-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
76 lines (63 loc) · 1.03 KB
/
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
@font-face {
font-family: 'CooperHewitt';
src: url('assets/fonts/CooperHewitt-Light.otf') format('truetype');
font-weight: normal;
font-style: normal;
}
* {
margin: 0;
padding: 0;
color: #222;
font-family: CooperHewitt;
}
body {
min-height: 100vh;
background-color: #938BA1;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
ul {
width: 700px;
max-width: 95vw;
display: flex;
align-items: center;
justify-content: center;
flex-wrap: wrap;
}
li {
width: 100px;
height: 100px;
margin: 5px;
padding: 10px;
display: flex;
align-items: center;
justify-content: center;
}
a {
width: 90%;
height: 90%;
color: #222;
padding: 2%;
border-radius: 10%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start;
text-decoration: none;
transition: all 0.6s ease-in-out;
}
a:hover {
scale: 1.1;
background-color: #B0C6CE;
}
a img {
width: 60%;
height: 60%;
filter: invert(10%);
}
a p {
text-align: center;
font-size: 0.9rem;
}