-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
66 lines (59 loc) · 1.28 KB
/
styles.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
@keyframes fadeInOpacity {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
html, body {
height: 100%;
min-height: 100%;
font-size: 10px;
}
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background: #c3cfe2 linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%) fixed;
/*background: #212531 linear-gradient(to right bottom, #2f3441 50%, #212531 50%) fixed;*/
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.container {
text-align: center;
flex-shrink: 1;
margin-top: auto;
margin-bottom: auto;
background: #2f3441 linear-gradient(to left top, #2f3441 50%, #212531 50%) fixed;
border-bottom-left-radius: 15px;
border-top-right-radius: 15px;
padding: 30px;
backdrop-filter: blur(5px);
color: #d7d7d8;
box-shadow: 12px 12px 5px 1px #212531;
opacity: 1;
animation-name: fadeInOpacity;
animation-iteration-count: 1;
animation-timing-function: ease-in;
animation-duration: 500ms;
max-width: 50%;
min-width: 300px;
}
h1 {
font-size: 3em;
margin-bottom: 20px;
}
p {
font-size: 1.8em;
margin: 0 0 10px;
}
.logo {
width: 200px;
margin-bottom: 20px;
}
.text-justify {
text-align: justify;
}