-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathstyle.css
67 lines (56 loc) · 1.13 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
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro&display=swap');
html, body{
height: 100%
}
.main-body{
padding: 0;
font-family: 'Source Sans Pro', sans-serif;
text-align: center;
display: flex;
flex-direction: column;
}
.header-bar{
padding:0;
}
.header-bar .header-title{
background-color: #1B065E;
padding: 15px;
width: 100%;
color:#CBC5EA;
font-weight: bold;
margin:0;
}
.header-bar .navbar-option{
padding: 10px;
width: 100%;
font-size: large;
background-color: #908ff1;
}
.header-bar .navbar-option:hover{
background-color: #6665DD;
}
.page-content{
overflow: scroll;
padding-top: 15px;
background-color: #EAEAEA;
flex: 2;
}
.info-container{
border-radius: 2px;
background-color: #CBC5EA;
box-shadow: 0px 0px 2px 1px rgba(109, 109, 109, 0.425);
margin-bottom: 15px;
padding:10px;
}
.info-container .minititle{
width: 100%;
padding-bottom: 10px;
margin-bottom: 10px;
font-size: large;
font-weight: bold;
border-bottom: 1px solid #979797;
}
ul{
text-align: left;
margin: auto;
}