forked from ArniWebDev/js-array-methods
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
64 lines (54 loc) · 855 Bytes
/
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
* {
margin: 0;
box-sizing: border-box;
}
body {
color: white;
font-family: sans-serif;
}
.wrapper {
height: 100vh;
display: grid;
grid-template-rows: 1fr 1fr;
}
header {
background-color: #f1c40f;
display: grid;
place-content: center center;
}
h1 {
text-align: center;
font-size: 4em;
margin-bottom: 1em;
}
footer {
background-color: #3498db;
display: grid;
grid-template-columns: repeat(7, minmax(40px, auto));
grid-auto-rows: 60px;
place-content: start space-around;
}
button {
margin-top: 20px;
width: 40px;
height: 40px;
border: none;
border-radius: 1em;
font-size: 1em;
background-color: #f1c40f;
color: inherit;
}
button:hover {
transform: scale(1.2);
}
button:focus {
outline: 0;
transform: scale(1.2);
color: #3498db;
}
ul {
font-size: 2em;
}
ul li {
margin-bottom: 8px;
}