-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle-index.css
140 lines (113 loc) · 1.82 KB
/
style-index.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
135
136
137
138
139
140
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
--card-title-border-color: #7b1e3e;
--card-color-primary: #7b1e3e;
--card-bg-color: #1d1c19;
--bg: url(./assets/bg-logo.svg);
}
a {
text-decoration: none;
}
ul {
list-style: none;
}
body {
background: #121214 var(--bg) no-repeat top center/cover;
width: fit-content;
}
body * {
font-family: "Roboto", sans-serif;
}
#app {
width: fit-content;
margin: auto;
padding-top: 52px;
}
header {
margin-bottom: 40px;
text-align: center;
}
#groups {
display: flex;
flex-direction: column;
gap: 32px;
justify-content: center;
}
.group {
padding: 32px 23px;
text-align: center;
background: var(--card-bg-color);
border-bottom: 2px solid var(--card-color-primary);
border-radius: 6px;
}
.group h2 {
display: flex;
gap: 16px;
justify-content: center;
align-items: center;
padding: 8px 16px;
border: 1px solid var(--card-title-border-color);
border-radius: 6px;
margin-inline: auto;
margin-bottom: 53px;
color: #ffffff;
}
.group ul {
display: flex;
flex-direction: column;
gap: 24px;
width: 270px;
}
.group ul li {
display: flex;
gap: 20px;
}
.group ul li + li {
padding-top: 24px;
border-top: 1px solid #323238;
}
.group ul li strong {
font-weight: 900;
font-size: 25px;
line-height: 160%;
color: #e1e1e6;
}
header img{
height: 180px;
}
li img {
width: 30px;
}
.group h2,
.group ul li strong:hover,
.group ul li img:hover {
transform: scale(1.1);
}
.group h2,
.group ul li,
.group ul li img {
transition: transform 0.3s;
}
.group {
opacity: 0;
animation: appear 3s forwards;
}
@keyframes appear {
0% {
transform: translateY(-50px);
opacity: 0;
}
100% {
opacity: 1;
}
}
@media (min-width: 400px) {
#groups {
flex-direction: row;
flex-wrap: wrap;
}
}