-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnormalStyle.css
103 lines (85 loc) · 1.9 KB
/
normalStyle.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
96
97
98
99
100
101
102
103
* {
margin: 0;
padding: 0;
}
html, body {
/* set this so that the sidebar can be set width/height */
width: 100%;
height: 100%;
}
body {
background-color: white;
}
p {
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
font-size: 20px;
}
h1 {
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
font-weight: normal;
}
.pageTitle {
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
color: #27b133; /*same as sidebar*/
font-size: 40px;
text-align: center;
}
.pageTitle img {
margin-bottom: -20px;
}
.topbar {
padding: 10px;
display: block;
background-color: #27b133; /*same as sidebar*/
box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
box-shadow: 0px 10px 16px 9px rgba(0, 0, 0, 0.05);;
z-index: 4;
}
.topbar button {
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
font-size: 15px;
color: black;
display: block;
border: 1px solid white;
background-color: #3cc247; /*slightly off of the default green*/
padding: 5px;
}
.topbar h1 {
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
font-size: 30px;
margin-bottom: 5px;
color: white;
}
.sidebarHolder {
display: inline-block;
}
.sidebar {
vertical-align: top;
height: 100vh;
width: 160px;
padding-top: 20px;
padding: 10px;
background-color: #27b133; /*main green*/
/* repl doesn't like this, but it works*/
scrollbar-color: #dddddd green;
overflow-y: scroll;
border: #c2c0c0 solid 2px;
border-left: none;
}
.sidebar a {
color: black;
}
.mainHolder {
/* left mostly empty as js manipulates this */
vertical-align: top;
}
.main {
padding-top: 30px;
padding-left: 10px;
padding-right: 10px;
padding-bottom : 0px;
margin-right: 0px;
word-wrap: break-word;
word-break: break-word;
overflow-y: scroll;
}