forked from Hungry-Hobo/Homepage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
84 lines (72 loc) · 1.16 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
body {
background-color: #161320;
text-align: center;
width: 900px;
margin-left: auto;
margin-right: auto;
}
h3 {
color: #575268;
font-family: 'Fira Sans', monospace;
width: 100%;
padding: .5rem;
margin: 0;
}
h1 {
font-family: 'Bungee Shade', cursive;
text-align: center;
color: #FAE3B0;
font-size: 90;
}
a {
color: inherit;
text-decoration: none;
}
list {
text-align: center;
text-decoration: none;
}
.all {
display: flex;
flex-direction: column;
vertical-align: top;
width: 12em;
}
.wrap {
display: flex;
justify-content: space-around;
align-items: stretch;
}
.title {
text-align: center;
width: 100%;
flex-grow: 0;
margin-bottom: 1rem;
}
.google {
background-color: #ABE9B3;
}
.media {
background-color: #96CDFB;
}
.links {
text-align: center;
color: #575268;
font-family: 'Fira Sans', monospace;
text-decoration: none;
font-weight: bold;
background-color: #C3BAC6;
width: 100%;
padding: .25rem;
flex-grow: 1;
}
.links a:hover {
text-decoration: underline;
}
*,
*:before,
*:after {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}