-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
112 lines (93 loc) · 1.53 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
html {
font-family: 'Work Sans', sans-serif;
color: #3b4252;
}
body {
margin-bottom: 250px;
}
.top-bar {
width: 600px;
margin: 0 calc(50% - 300px);
display: inline-block;
}
#logo {
font-size: large;
display: inline-flex;
padding: 3px 15px;
margin: 20px 0;
border: 3px dashed #4c566a;
}
#logo h1 {
padding: 0;
margin: 0;
}
#logo a {
color: #3b4252;
transition: color .2s ease;
}
#logo a:hover{
color: #a3be8c;
}
.top-bar h1 {
font-size: 160%;
display: inline-block;
padding: 10px;
margin: 0;
}
.top-bar nav {
display: flex;
border: 3px solid #4c566a;
border-radius: 5px;
}
.top-bar nav a {
display: flex;
height: 2.1rem;
width: 100%;
flex-grow: 1;
align-items: center;
justify-content: center;
background-color: #4c566a;
color: white;
}
.top-bar nav a:hover {
background-color: #3b4252;
}
.top-bar a:active {
color: #a3be8c;
}
.button-holder {
display: flex;
}
.button-holder a {
display: flex;
justify-content: center;
align-items: center;
padding: 10px 20px;
border: 1px solid #4c566a;
color: #3b4252;
border-radius: 3px;
}
.button-holder a:hover {
background-color: #4c566a;
color: white;
}
.page-info {
font-size: 105%;
width: 600px;
margin: 30px calc(50% - 300px);
}
#rick-roll {
color: #81a1c1;
}
a {
text-decoration: none;
color: #3b4252;
}
img {
width: 100%;
border: 1px solid #3b4252;
border-radius: 5px;
}
hr {
margin: 50px 0;
}