-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
87 lines (75 loc) · 1.32 KB
/
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
html, body {
margin: 0;
padding: 0;
background-color: #3b404e;
color: white;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
height: 100vh;
width: 100vw;
max-width: 100%;
max-height: 100%;
}
a {
text-decoration: none;
color: white;
}
header {
display: flex;
align-items: center;
flex-direction: column;
}
main {
display: flex;
align-items: center;
flex-direction: column;
margin-top: 3em;
}
footer {
display: flex;
align-items: center;
flex-direction: column;
margin-top: 3em;
}
ul {
display: flex;
flex-wrap: wrap;
list-style: none;
margin: 2em 0 0 0;
}
li {
background: white;
color: #3b404e;
padding: 1rem;
border-radius: 10px;
flex-grow: 1;
margin-left: 2%;
margin-bottom: 2%;
cursor: pointer;
box-shadow: 0 0.5rem 1rem rgb(3 0 4 / 15%);
max-width: 12em;
}
li:hover {
background-color: #ececec;
box-shadow: 0 0.5rem 1rem rgb(3 0 4 / 35%);
}
li a {
color: #3b404e;
}
.huge-title {
font-size: 6em;
padding-top: .7em;
}
.card {
background-color: lightslategrey;
max-width: 50em;
padding: 1em 2em;
border-radius: 5px;
box-shadow: 0 0.5rem 1rem rgb(3 0 4 / 15%);
}
.card-title {
font-weight: bold;
}
.text-white {
color: white;
}