-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
140 lines (121 loc) · 2.34 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
* {
margin: 0;
padding: 0;
}
body {
background: #CDA;
}
#wrapper {
width: 960px;
background: -moz-linear-gradient(bottom, #789, #ABC);
margin: 15px auto 0 auto;
padding-top: 10px;
padding-bottom: 10px;
border-radius: 10px;
box-shadow: 0px 0px 10px 2px #222;
}
#header {
position: relative;
background: #EEE;
width: 920px;
margin: 7px auto 0 auto;
padding-bottom: 7px;
border-radius: 8px;
box-shadow: inset 0px 0px 15px #222;
}
#title h1 {
font-family: Desdemona;
font-size: 4.5em;
font-weight: normal;
text-align: left;
padding-left: 10px;
text-shadow: 2px 2px 3px #000;
}
#title .subHead {
font-family: "Edwardian Script ITC";
font-size: 2em;
font-weight: lighter;
float: right;
margin-right: 25px;
margin-bottom: 10px;
}
#menu {
clear: both;
}
#menu ul {
width: 890px;
background: #CDA;
padding: 5px;
padding-bottom: 8px;
margin: 0 auto;
border-radius: 7px;
box-shadow: inset 0px 0px 9px #222;
}
#menu ul li {
list-style: none;
display: inline-block;
padding: 5px;
border-radius: 9px;
box-shadow: 4px 4px 4px 1px #222;
background: -moz-linear-gradient(bottom, #707070, #C0C0C0);
}
#menu ul li a {
text-decoration: none;
color: black;
padding: 10px;
}
#body {
width: 920px;
min-height: 500px;
margin: 20px auto 10px auto;
background: #EEE;
border-radius: 8px;
}
#article {
width: 670px;
padding: 15px;
float: left;
}
#postName {
padding: 15px 0;
}
#date {
padding: 0 0 15px 20px;
}
#content p {
padding: 0 0 15px 0;
line-height: 1.4em;
}
#content .primary {
font-size: 2.6em;
font-weight: bolder;
float: left;
line-height: .7em;
padding: .15em .15em;
margin-right: .1em;
border: 1px solid #EEE;
border-radius: 5px;
background: -moz-linear-gradient(top, #BBB, #EEE);
box-shadow: inset 0px 0px 6px #999;
}
#content .secondary {
font-size: 1.4em;
line-height: .6em;
font-weight: bolder;
float: left;
border: 1px solid black;
padding: .15em .15em;
margin-right: .2em;
text-align: center;
}
#content .secondarySpace {
font-size: 1.8em;
font-weight: bolder;
float: left;
padding-right: 5px;
}
#aside {
width: 190px;
padding: 15px;
float: right;
}