-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
70 lines (59 loc) · 1.27 KB
/
style.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
@import url("https://fonts.googleapis.com/css?family=Montserrat:400,700&display=swap");
body {
font-family: "Montserrat", sans-serif;
background: linear-gradient(to bottom, #4d7fff, #ff4d8f);
color: #fff;
line-height: 1.5;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 100px 0;
}
.claim {
opacity: 0;
transform: translateY(50%);
transition: opacity 1s ease-out, transform 1s ease-out;
font-size: 1.2rem;
font-weight: 400;
margin-bottom: 2rem;
background-color: rgba(255, 255, 255, 0.1);
padding: 2rem;
margin-bottom: 4rem;
}
.claim:nth-child(odd) {
background-color: rgba(255, 255, 255, 0.05);
}
.claim h2 {
font-size: 2rem;
font-weight: 700;
margin-bottom: 0.5rem;
}
.claim a {
color: #fff;
text-decoration: underline;
}
.opacity-100 {
opacity: 1;
}
.translate-y-0 {
transform: translateY(0);
}
body {
overflow-y: scroll;
scrollbar-width: none;
-ms-overflow-style: none;
}
body::-webkit-scrollbar {
width: 0px;
}
.footer {
position: fixed;
bottom: 0;
left: 0;
width: 100%;
padding: 20px;
text-align: center;
color: rgba(255, 255, 255, 0.8);
font-size: 0.8rem;
}