-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.css
76 lines (70 loc) · 1.47 KB
/
app.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
*{
padding: 0;
margin: 0;
}
.col-8{
flex: 0 0 66.66666%;
max-width: 66.66666;
}
.ml-3{
margin-left: 1rem;
}
.content{
padding-left: 35rem;
margin-bottom: 10rem;
margin-top: -448px;
}
.p{
padding: top -44px;
}
.navbar-brand{
padding-right: 15rem;
margin-top: auto;
margin-right:2rem ;
}
.nav-link {
padding-right: 4rem;
}
.modal {
background-color: rgba(255, 255, 255, 0.95);
border-radius: 5px;
color: #333;
font-family: sans-serif;
line-height: 1.5;
max-width: 50%;
padding: 1rem 2rem;
color: #bf0222;
}
@supports (-webkit-backdrop-filter: none) or (backdrop-filter: none) {
.modal {
-webkit-backdrop-filter: blur(10px);
backdrop-filter: blur(10px);
background-color: rgba(255, 255, 255, 0.5);
}
.warning {
display: none;
}
}
body {
height: 100%;
width: 100%;
}
body {
background-image: url('https://images.unsplash.com/photo-1519817914152-22d216bb9170?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxzZWFyY2h8OXx8cm9hZHxlbnwwfHwwfHw%3D&w=1000&q=80');
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
/* From https://css.glass */
border-radius: 16px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(5px);
-webkit-backdrop-filter: blur(5px);
border: 1px solid rgba(255, 255, 255, 0.3);
}
.container {
align-items: center;
display: flex;
justify-content: center;
height: 100%;
width: 100%;
}