-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
103 lines (81 loc) · 1.39 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
.shadowed {
box-shadow: 0px 0px 10px 10px #666;
}
.coming-soon {
color: #00c600;
font-weight: bolder;
}
.in-planning {
color: #ff8000;
font-weight: bolder;
}
a:link {
color: #4242ff;
font-weight: bolder;
text-decoration: none;
}
a:visited {
color: #4242ff;
font-weight: bolder;
}
a:hover {
color: #000;
font-weight: bolder;
text-decoration: underline;
}
a:active {
color: #000;
font-weight: bolder;
}
body {
background-color: #ccc;
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
header {
width: 95%;
max-width: 900px;
margin: 15px auto 30px auto;
text-align: center;
padding: 0px;
background-color: #000;
color: white;
padding: 5px 0px 0px 0px;
}
header > img {
width: 90%;
margin: 10px;
}
nav {
padding: 5px;
text-align: center;
background-color: #ff8c42;
}
nav > a {
margin: 0px 15px;
display: inline-block;
}
h1 {
background-color: #007AC4;
color: #fff;
padding: 0px 5px;
border-radius: 10px;
}
.main-content {
width: 95%;
max-width: 900px;
margin: 0px auto;
text-align: left;
padding: 0px;
background-color: #fff;
padding: 5px;
}
footer {
width: 95%;
max-width: 900px;
margin: 30px auto 0px auto;
text-align: center;
padding: 0px;
background-color: #000;
color: #c0c0c0;
padding: 5px;
}