-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
163 lines (148 loc) · 2.86 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
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
body
{
background-image: url("background.png");
font-family: "Lato", sans-serif;
background-size: cover;
background-position: center;
}
#container
{
width: 1000px;
margin-left: auto;
margin-right: auto;
}
#logo
{
color: #ffffff;
margin-top: 20px;
font-size: 44px;
font-weight: 900;
letter-spacing: 3px;
text-align: center;
}
#menu
{
background-color: #303030;
color: #ffffff;
margin-top: 20px;
padding: 8px;
text-align: center;
font-weight: 700;
border: 2px solid #f36742;
box-shadow: #f36742 5px 5px 20px;
}
#topbar
{
background-color: #128870;
color: #ffffff;
padding: 10px;
margin-top: 20px;
margin-bottom: 25px;
height: 185px;
border: 2px solid #ffffff;
box-shadow: #ffffff 5px 5px 20px;
}
#topbarL
{
float: left;
padding: 20px;
width: 138px;
text-align: center;
border-right: 2px dotted #cccccc;
}
#topbarR
{
float: left;
padding: 20px;
width: 750px;
font-size: 16px;
text-align: justify;
}
#sidebar
{
float: left;
width: 148px;
min-height: 885px;
padding: 20px;
background-color: lightgray;
text-align: center;
font-size: 18px;
font-weight: 700;
border-right: 2px dotted #666666;
border-left: 2px solid #f36742;
border-top: 2px solid #f36742;
border-bottom: 2px solid #f36742;
box-shadow: #f36742 5px 5px 20px;
}
#content
{
float: left;
padding: 40px;
width: 726px;
background-color: #dedede;
height: 845px;
text-align: justify;
border-right: 2px solid #f36742;
border-top: 2px solid #f36742;
border-bottom: 2px solid #f36742;
box-shadow: #f36742 5px 5px 20px;
}
#footer
{
clear: both;
color: #ffffff;
text-align: center;
font-size: 18px;
font-weight: 700;
padding: 20px 0;
text-shadow: 10px 10px 20px #000000;
background-color: rgba(0,0,0, 0.4);
}
.option
{
float: left;
min-width: 222px;
height: 25px;
font-size: 18px;
padding: 10px;
border-right: 2px dotted #444444;
opacity: 0.8;
color: #ffffff;
}
.option:hover
{
background-color: #000000;
cursor: pointer;
color: #f36742;
}
.optionL
{
font-size: 18px;
padding-top: 70px;
height: 147px;
border-bottom: 2px dotted #444444;
border-top: 2px dotted #444444;
color: #000000;
}
.optionL:hover
{
background-color: #f36742;
color: #ffffff;
cursor: pointer;
}
.bigtitle
{
font-size: 32px;
font-weight: 900;
letter-spacing: 2px;
margin-left: 120px;
text-shadow: #444444 5px 5px 20px;
}
.dottedline
{
height: 5px;
margin-top: 15px;
margin-bottom: 20px;
border-bottom: 2px dotted #428870;
box-shadow: 4px 4px 4px #428870;
}