-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
94 lines (84 loc) · 1.36 KB
/
styles.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
/*CSS reset settings here*/
*{
margin: 5px;
padding: 5px;
font-family: serif;
}
body{
display: block;
}
h1{
font-family:inherit;
color:rgb(182,204,227);
text-decoration: none;
}
h4 {
display: inline;
color:rgb(109,117,255);
}
p{
display:inline-block;
color:rgb(182,204,227);
}
li a{
color:rgb(93,215,216);
padding-top: 0px;
margin: -5px;
}
ul li {
padding-top: 0px;
margin: -9px;
color: rgb(182,204,227)
}
ul {
font-family: serif;
list-style-position: inside;
color:white;
margin-bottom: -19px;
margin-top: -17px;
}
a{
color:rgb(93,215,216);
}
a.home{
color:rgb(93,215,216);
display: inline-block;
margin-top: -7px;
padding-bottom: 18px;
margin-left: -10px;
}
#wrapper{
width: 970px;
background-color: rgb(21,27,75);
margin: -5px auto;
padding:inherit;
}
#header{
height: inherit;
background-color: rgb(193,26,42);
border-radius: 8px
}
#navigation{
height: auto;
width: auto;
background-color: rgb(34,107,121);
margin-top: 2px;
vertical-align: top;
display: inline-block;
padding-top:29px;
border-radius: 8px
}
#main_content{
height: 400px;
width: 737px;
background-color: rgb(13,19,26);
display:inline-block;
border-radius: 8px
}
#footer{
height: auto;
width: -webkit-fill-available;
background-color: rgb(75,83,96);
display: inline-block;
border-radius: 8px
}