-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
79 lines (66 loc) · 1.13 KB
/
index.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
body {
margin: 0px;
}
.container {
display: flex;
}
.sidebar {
text-align: center;
margin: 0px;
padding: 0px;
width: 200px;
background-color:#555555;
height: 100vh;
overflow: auto;
}
.sidebar button {
all: unset;
width: 100%;
font-size: 18px;
display: block;
color: #ffffff;
text-decoration: none;
max-height: 20px;
padding: 20px 0;
text-align: center;
cursor: pointer;
}
.sidebar .active {
font-weight: bold;
font-size: 20px;
background-color: #8b139b;
}
.sidebar button:hover {
background: #757575;
color: #ffffff;
}
div.content{
padding: 0;
height: 800px;
}
.content *{
margin-top:0;
}
.head p {
font-size: 20px;
margin: 20px;
color: #ffffff;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;;
}
img {
margin-top: 20px;
}
a {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
iframe {
display: block;
width: 100%;
height: 100vh;
}
#inst-wrapper {
flex: 1;
display: block;
height: 100vh;
position: relative;
}