-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
70 lines (63 loc) · 1.41 KB
/
Copy pathstyle.css
File metadata and controls
70 lines (63 loc) · 1.41 KB
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
@import url("https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap");
* {
margin: 0;
padding: 0;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
body {
min-height: 100vh;
font-family: 'Roboto', sans-serif;
color: crimson;
background-color: #1d1e22;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: space-evenly;
-ms-flex-pack: space-evenly;
justify-content: space-evenly;
}
a {
text-decoration: none;
}
.card {
padding: 20px;
border: 4px solid blue;
border-radius: 10px;
background-color: antiquewhite;
-webkit-box-shadow: 3px 3px blue;
box-shadow: 3px 3px blue;
text-align: center;
}
.card h1 {
padding-bottom: 10px;
}
.card ul {
list-style: none;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: space-evenly;
-ms-flex-pack: space-evenly;
justify-content: space-evenly;
font-size: 1.5em;
}
footer {
position: fixed;
bottom: 0px;
left: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
text-align: center;
}
footer > a {
color: crimson;
}
/*# sourceMappingURL=style.css.map */