-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.scss
61 lines (53 loc) · 1.02 KB
/
style.scss
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
$accent: #00B8D4;
$main-tab-color: white;
body {
margin: 0;
background-image: url('background.jpg');
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
background-position: center;
margin-bottom: 20px;
height: 100%;
.content {
clear: both;
position:relative;
z-index: 1;
padding: 10px;
padding-bottom: 20px;
margin-left: auto;
margin-right: auto;
width: 40%;
height: 100%;
background: black;
opacity: 0.75;
color: black;
border-radius: 10px;
margin-top: 90px;
font-size: larger;
}
#content-inner {
background: white;
border: 1px solid white;
border-radius: 5px;
margin: 10px;
opacity: 0.9;
padding-left: 10px;
padding-right: 10px;
a {
text-decoration: none;
color:$accent;
}
.content-body {
width: 85%;
}
.side-menu {
border-left: 2px solid black;
width: 15%;
}
}
#copyright {
margin-top: 10px;
margin-left: 45%;
}
}