-
Notifications
You must be signed in to change notification settings - Fork 0
/
stylesheet.css
134 lines (116 loc) · 1.9 KB
/
stylesheet.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
body{
/* SHORTHAND CSS NOTATION
background:url(world.jpg)
center center cover no-repeat fixed;
*/
background-image: url(world.jpg);
background-position:center center;
background-repeat:cover no-repeat;
background-attachment: fixed;
background-color:#495d63;
margin:0px;
font-size: 14px;
font-family: Verdana, Georgia,san-serif,roboto,helvica;
}
#header{
background-color: #98b6b1;
height: 70px;
margin:20px;
border-radius: 5px;
font-size: 110%;
}
#navbar ul{
background-color: #000;
height: 20px;
margin:20px;
padding:5px;
border-radius: 5px;
font-size: 100%;
text-align:center;
}
#navbar ul li{
display:inline;
}
#navbar ul li a{
background-color: #000;
text-decoration: none;
padding: .2em 4em;
color: #fff;
}
#navbar ul li a:hover{
color:#000;
background-color: #fff;
}
.sideright{
background-color: #98b6b1;
margin-left:0px;
margin-bottom:10px;
margin-right:20px;
margin-top: 0px;
padding:20px;
float: right;
border-radius: 5px;
width: 290px;
clear:right;
}
.imagesidebar{
margin-left:0px;
margin-bottom:10px;
margin-right:20px;
margin-top: 0px;
float: right;
border-radius: 5px;
width: 330px;
clear:right;
}
.main{
background-color: #e6e1c5;
margin-left:20px;
margin-bottom:20px;
margin-right:360px;
margin-top: 20px;
padding:20px;
border-radius: 5px;
font-size: 110%;
}
#footer{
background-color: #98b6b1;
height:40px;
margin:20px;
padding:5px;
border-radius: 5px;
font-size: 80%;
text-align: center;
clear:both;
}
#footer ul{
list-style-type: none;
border-radius:5px;
}
#footer ul li{
display:inline;
}
#footer ul li a{
text-decoration: none;
padding: .2em 1em;
color: #fff;
}
#footer ul li a:hover{
color:#000;
background-color: #fff;
}
table{
background-color: #bcd3f2;
padding:20px;
margin:10px;
}
h1{
color:#ee6352;
}
#header h3{
font-size:250%;
color:#e75a7c;
text-align: center;
padding-bottom:10px;
padding-top:10px;
}