-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
56 lines (48 loc) · 803 Bytes
/
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
body {
height: 100vh;
width: 100vw;
overflow-y: scroll;
background-color: #f9f9f9;
}
h1 {
margin: 2rem;
font-size: 2rem;
font-weight: 900;
}
/* Sticky footer */
.page-wrapper {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100%;
width: 100%;
}
.main-wrapper {
flex: 1;
max-width: min(75vw, 90%);
}
.card {
display: inline-block;
margin: 0.2rem;
padding: 4rem;
text-decoration: none;
font-weight: 600;
border-radius: 10px;
}
.card:hover {
box-shadow: 12px 12px 12px rgba(0, 0, 0, 0.1), -10px -10px 10px #fff;
}
.flex {
display: flex;
align-items: center;
justify-content: center;
}
.flex-column {
display: flex;
flex-direction: column;
align-items: center;
}
.space-top {
margin-top: 2rem;
}