-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathstyle.css
96 lines (85 loc) · 1.42 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
body
{
overflow-x: hidden;
}
.top-bar
{
width: 100%;
padding-top: 1%;
padding-bottom: 1%;
background-color: rgba(21, 21, 21, 1);
position: fixed;
top: 0%;
left: 0%;
text-align: center;
color: white;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
font-size: 5vh;
z-index: 2;
overflow: hidden;
}
.side-bar
{
position: fixed;
left: 0%;
top: 0%;
background-color: rgba(21, 21, 21, 1);
width: 20vh;
height: 100%;
overflow: hidden;
}
.projects
{
position: relative;
top: 10vh;
}
.projects li
{
padding-top: 2.5vh;
padding-bottom: 2.5vh;
list-style: none;
color: white;
text-align: center;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
cursor: pointer;
border-bottom: 0.2vh solid white;
}
.projects li:hover
{
background-color: rgba(31, 31, 31, 1);
}
.selected
{
background-color: rgba(50, 50, 50, 1);
display: block;
}
.links
{
position: absolute;
top: 15vh;
left: 35vh;
display: none;
width: 200vh;
overflow: hidden;
}
.links li
{
padding-top: 3vh;
padding-right: 30vh;
font-size: 3vh;
font-family: cursive;
padding-bottom: 3vh;
width: 50vh;
display: inline-block;
float: left;
}
.links a
{
color: black;
font-size: 3vh;
text-decoration: none;
}
a:hover
{
color: blue;
}