forked from alyhemani/webFun_jan_2017
-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathstyle.css
More file actions
65 lines (55 loc) · 866 Bytes
/
style.css
File metadata and controls
65 lines (55 loc) · 866 Bytes
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
/*CSS reset settings here*/
* {
margin: 0px;
padding: 0px;
}
body {
background-color: rgb(29, 52, 92);
color: rgb(195, 214, 235);
}
a {
color: rgb(195, 214, 235);
}
ul {
padding-left: 20px;
}
p {
margin: 10px 0px;
}
#highlight {
color: rgb(133, 145, 255);
}
#javascript_list li {
margin: 10px 0px;
}
#wrapper {
margin: 20px;
width: 1024px;
}
#header {
background-color: rgb(204, 50, 58);
border-radius: 10px;
padding: 20px;
margin-bottom: 20px;
}
#navigation {
background-color: rgb(46, 125, 139);
display: inline-block;
border-radius: 20px;
padding: 25px;
margin-right: 20px;
}
#main_content {
background-color: rgb(14, 24, 33);
display: inline-block;
width: 70%;
border-radius: 20px;
padding: 25px;
vertical-align: top;
}
#footer {
background-color: rgb(94, 102, 114);
border-radius: 20px;
padding: 25px;
margin-top: 20px;
}