-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
128 lines (110 loc) · 1.72 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
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
--gray-50: #1f1d22;
--gray-100: #38343d;
--gray-200: #686071;
--gray-300: #797085;
--gray-350: #b1aabb;
--gray-400: #f4effa;
--gray-500: #fdfcfe;
--red: #d81e1e;
--red-200: #aa2222;
--purple-100: #9333ea;
--purple-200: #6d26af;
--green-500: #04d361;
font-family: Inter;
font-size: 62.5%;
}
button {
cursor: pointer;
}
button {
cursor: pointer;
}
html,
body,
input,
textarea,
button {
font-size: 1.8rem;
font-family: "Inter", sans-serif;
}
body {
min-height: 100vh;
max-width: 100%;
display: grid;
justify-content: center;
background-color: var(--gray-500);
padding: 0.8rem;
}
.app {
display: flex;
flex-direction: column;
padding: 1.6rem 2.4rem;
border-radius: 0.8rem;
background-color: var(--gray-400);
color: var(--gray-50);
border: 1px solid var(--gray-350);
max-width: 80rem;
}
img {
max-width: 100%;
min-width: 30rem;
object-fit: contain;
}
h1,
h2,
h3,
h4,
h5,
h6 {
padding-bottom: 1rem;
}
p {
padding-bottom: 0.5rem;
}
a {
text-decoration: none;
}
footer {
display: flex;
flex-direction: column;
width: 100%;
align-items: center;
justify-content: flex-end;
margin-top: 4rem;
font-size: 2rem;
font-weight: bold;
flex: 1;
}
.icon {
padding: 0.4rem;
display: block;
background-color: var(--purple-100);
border-radius: 0.4rem;
color: white;
}
.list {
padding-left: 2.4rem;
display: flex;
gap: 0.2rem;
flex-direction: column;
}
.list li a {
display: flex;
align-items: center;
gap: 0.8rem;
max-width: fit-content;
}
.list li a:hover .icon {
background-color: var(--purple-200);
}
.banner {
display: flex;
justify-content: center;
padding: 1rem 0;
}