-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
153 lines (122 loc) · 2.28 KB
/
main.css
File metadata and controls
153 lines (122 loc) · 2.28 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
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
/*
* Sidebar
*
* The sidebar used for links for quick access
*/
.sidebar{
/*Size of sidebar*/
height: 100%;
width: 400px;
/*Fixes the position and brings to front*/
position: fixed;
z-index: 1;
/*Stick the bar to the border of the page*/
top: 0;
left: 0;
bottom: 0;
/*Sets color and removes overflow detection*/
background-color: #2c2a2a;
overflow-x: hidden;
/*Top, right, bottom, left*/
padding: 200px 5px 60px 10px;
}
.sidebar-content{
font-family: 'Montserrat', sans-serif;
font-weight: 300;
margin-left: 20px;
margin-right: 28px;
text-align: left;
}
.sidebar-content h1, h2, h3, h4, h5{
font-family: 'Prata', serif;
}
.sidebar-title{
color: #ffffff;
text-decoration: none;
font-size: 3.25rem;
}
.sidebar-title:hover{
text-decoration: underline;
}
.sidebar-content p{
color: #9a9a9a;
line-height: 1.8rem;
font-size: 1.3rem;
}
.sidebar-content p a{
color: #ffffff;
text-decoration: none;
}
.sidebar-content p a:hover{
text-decoration: underline;
}
.sidebar-links{
color: #ffffff;
font-size: 1.4rem;
margin-left: 30px;
}
.sidebar-links > div{
margin-bottom: 10px;
}
.sidebar-links i{
transform: scaleX(2);
text-decoration: none;
}
.active{
margin-left: 40px;
}
.active i{
transform: scaleX(2) translate(0.2rem)
}
.active .bp-text{
text-decoration: underline;
}
.inactive{
margin-left: 30px;
}
.inactive:hover i{
color: #e3e3e3;
transform: scaleX(2) translate(0.3rem);
}
.inactive:hover .bp-text{
text-decoration: underline;
}
.bp-text{
display: inline;
font-family: 'Montserrat', sans-serif;
font-size: 1.2rem;
margin-left: 10px;
}
.bp-text:hover{
cursor: pointer;
}
/*
* Content
*
* The content page for the actual, well, content
*/
.content{
/* Same as the width of the sidebar */
margin-left: 400px;
/*Top, right, bottom, left*/
padding: 80px 0 50px 220px;
font-family: 'Lora', serif;
}
.content h1{
font-size: 3.5rem;
color: #2d2b2b;
}
.content-date{
color: #9a9a9a;
margin-top: -2.5rem;
}
.content p{
margin-right: 220px;
font-family: 'Chivo', sans-serif;
font-size: 1.4rem;
color: #4d4d4d;
}
#TFImage{
cursor: pointer;
height: 300px;
}