-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstylesheet.css
More file actions
77 lines (62 loc) · 1.05 KB
/
stylesheet.css
File metadata and controls
77 lines (62 loc) · 1.05 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
71
72
73
74
75
76
77
body {
font-family: "Lato", sans-serif;
background-color: #DAE2B6;
height: 100%;
margin: 0;
padding: 8px 8px
}
.main {
background: #F4EAD5;
border: 3px solid #867055;
border-radius: 5px;
padding: 8px;
display: flex;
justify-content: space-between;
flex: 1;
}
.sidebar {
align-self: flex-end;
background: #F4EAD5;
}
.sidebar a {
text-decoration: none;
font-size: 15px;
color: #B19470;
}
.topbar {
display: flex;
justify-content: space-between;
background: #F4EAD5;
border: 3px solid #867055;
border-radius: 5px;
padding: 8px;
align-self: center;
}
.banner {
align-self: center;
}
.bio {
align-self: normal;
}
.descbox {
flex: 0;
align-self: center;
object-fit: contain;
max-width: 100%;
}
.ffooter {
background: #F4EAD5;
border: 3px solid #867055;
border-radius: 5px;
padding: 8px;
}
a {
color: #B19470;
}
li a.active {
color: #42372a;
}
li a:hover:not(.active) {
background-color: #FFFBE9;
color: #B19470;
}