-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.css
More file actions
68 lines (61 loc) · 1.22 KB
/
Copy pathtemplate.css
File metadata and controls
68 lines (61 loc) · 1.22 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
:root {
--white: #ffffff;
--white-trans: #ffffff80;
--lighter-white: #dedede;
--light-white: #cccccc;
--lighter-gray: #adadad;
--light-gray: #777;
--gray: #404040;
--dark-gray: #262626;
--black: #000000;
--black-trans: #000000bf;
--light-blue: #4fb4ce;
--blue-green: #4089ae;
--cyan: #008080;
--light-cyan: #4ed5e4;
--cyan-trans: #00808050;
--dark-cyan: #2e535c;
--x-dark-cyan: #101d20;
--gray-blue: #435760;
--gcp-yellow: #f8bc0f;
--gcp-red: #eb4131;
--gcp-blue: #0075bd;
--firebase-orange: #f29e13;
--main-width: 960px;
--h1-font-size: 40px;
--h2-font-size: 32px;
--h3-font-size: 24px;
--main-font-size: 18px;
--small-font-size: 15px;
}
#navbar-template {
position: absolute;
top: 0px;
left: 0px;
padding: 25px;
background-color: var(--dark-cyan);
border-radius: 0px 0px 25px 0px;
}
.navdiv-template {
text-decoration: none;
}
.navdiv-template a {
color: var(--white);
text-decoration: none;
border: solid var(--dark-cyan);
padding: 5px;
border-radius: 7px;
}
.navdiv-template i {
padding-right: 5px;
}
.navdiv-template a:hover {
border: solid var(--white);
cursor: pointer;
}
#last-section a {
color: lightblue;
}
#last-section {
margin-top: 200px;
}