-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
134 lines (113 loc) · 1.83 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
*{
margin: 0;
padding: 0;
}
body{
background-color: #121214;
background-image: url('./assets/background.svg');
/* background-position-y: -50%; */
background-position-x: center;
background-repeat: no-repeat;
background-size: cover;
}
body *{
font-family: 'Roboto';
}
#app{
width: fit-content;
margin: auto;
padding-top: 52px;
}
header{
margin-bottom: 63px;
text-align: center;
}
/* main{
} */
ul{
list-style: none;
}
#cards{
display: flex;
flex-direction: column;
gap: 32px;
}
.card{
padding: 32px 23px;
text-align: center;
border-radius: 6px;
border-bottom: 2px solid #F7DD43;
background-color: #1A1F1B;
background-image: url('./assets/background.svg');
background-position-y: 80%;
background-position-x: center;
}
.card h2{
display: flex;
gap: 16px;
justify-content: center;
align-items: center;
border: 1px solid #F7DD43;
padding: 8px 16px;
border-radius: 6px;
color: #F7DD43;
margin-bottom: 53px;
margin-inline: auto;
width: fit-content;
}
.card h2 span{
color: #E1E1E6;
font-size: 14px;
text-transform: uppercase;
}
.card ul{
display: flex;
flex-direction: column;
gap: 24px;
width: 270px;
}
.card ul li{
display: flex;
align-items: center;
justify-content: space-between;
}
.card ul li strong{
font-size: 36px;
font-weight: 900;
color: #E1E1E6;
}
.card ul li + li{
padding-top: 24px;
border-top: 1px solid #323238;
}
/* .card{
animation-name: delay;
animation-duration: 3.5s;
} */
footer{
text-align: center;
padding-top: 40px;
padding-bottom: 40px;
}
footer a{
text-decoration: none;
color: #E1E1E6;
}
footer a:hover{
color: #F7DD43;
}
@keyframes delay{
from{
opacity: 0%;
}
to{
opacity: 100%;
}
}
@media (min-width: 700px){
#cards{
max-width: 670px;
flex-direction: row;
flex-wrap: wrap;
}
}