This repository has been archived by the owner on Oct 16, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
theme.css
79 lines (65 loc) · 1.65 KB
/
theme.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 {
/* Font settings */
font-family: 'Open Sans', Helvetica, Arial, sans-serif;
font-size: 15px;
margin: 0px;
padding: 0px;
border: 0px;
background-color: rgb(0,32,96);
}
#background {
background: -webkit-linear-gradient(rgb(31,78,121), rgb(0,32,96)); /* Webkit */
background: -o-linear-gradient(rgb(31,78,121), rgb(0,32,96)); /* Opera */
background: -moz-linear-gradient(rgb(31,78,121), rgb(0,32,96)); /* Mozzila */
background: linear-gradient(rgb(31,78,121), rgb(0,32,96));
}
#wrapper {
/* Color and size */
width: 1024px;
background-color: rgb(2,92,130);
/* Margin settings */
margin-left: auto;
margin-right: auto;
}
#sidebar {
/* Size */
height: 726px; /* Height is set to prevent a bug */
width: 250px;
/* Colour and location */
color: white;
background-color: rgb(2,92,130);
float: left;
/* Margins and padding */
margin-top: 0px;
padding: 2px;
padding-left: 5px;
padding-right: 5px;
}
#content {
/* Size */
height: 720px; /* Height is set to prevent a bug */
width: 754px;
/* Colour and location */
background-color: rgb(230,230,230);
float: right;
/* Scroll bar */
overflow-y: scroll;
overflow-x: hidden;
/* Stuff to make it look nice */
padding: 5px;
}
#header {
/* Look nice while picture is loading */
background-color: rgb(2,92,130);
}
/* The anchor tags look nasty on the sidebar using the default styling */
#sidebar a {
/* Text decoration and colour */
text-decoration: none;
color: rgb(225,225,225);
}
/* Same can be said about the horizontal line */
#sidebar hr {
border-color: white;
border-style: none;
}