-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
52 lines (46 loc) · 918 Bytes
/
style.css
File metadata and controls
52 lines (46 loc) · 918 Bytes
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
:root {
--yellow: #ffc600;
--black: #272727;
--silver: #d7d7d7;
}
html {
box-sizing: border-box;
font-weight: 600;
font-size: 10px;
color: var(--black);
text-shadow: 0 2px 0 rgba(0, 0, 0, 0.07);
}
:before,
*:after {
box-sizing: inherit;
}
body {
linear-gradient(110deg, #f93d66, #6d47d9);
min-height: calc(100vh - 100px);
margin: 50px;
letter-spacing: -1px;
}
.item {
display: grid;
justify-content: center;
align-items: center;
border: 2px solid var(--black);
border-radius: 3px;
font-size: 35px;
background-color: var(--yellow);
}
.header {
background-color: var(--silver);
color: var(--black);
font-size: 25px;
border: 1px solid var(--black);
padding: 10px;
display: grid;
justify-content: center;
align-items: center;
margin: 20px 0;
}
.item p {
margin: 0 0 5px 0;
font-size: 20px;
}