-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
50 lines (38 loc) · 748 Bytes
/
styles.css
File metadata and controls
50 lines (38 loc) · 748 Bytes
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
/* Colors taken from colorhunt.co */
body {
/* Background color of the entire page */
background-color: #FEFAEC;
}
.container {
text-align: center;
font-size: 18px;
font-family: 'Roboto Mono', monospace;
/* Text color */
color: #625772;
}
.links {
display: inline-block;
text-align: left;
}
.row {
margin: 10px;
}
a {
padding: 5px;
text-decoration: none;
/* Color of links, same color as text */
color: #625772;
}
#line {
display: inline-block;
/* Color for the dividing line */
color: #F38181;
}
#header {
text-align: center;
font-size: 50px;
font-family: 'Pacifico', cursive;
/* Header, same color as text */
color: #625772;
margin: 5%;
}