-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathstyle_v01.css
166 lines (143 loc) · 3.06 KB
/
style_v01.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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
/* mostly basic or repeatedly used styles go here */
html {
margin:0;
padding:0;
}
body {
background: #fff;
/*
background: -moz-linear-gradient(top, #fff, #eee);
background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#eee));*/
height: auto;
overflow: Auto;
font-size:13px;
font-family: Tahoma, Geneva, sans-serif;
line-height: 1.4;
margin:0;
padding:0;
color:#2E4E61;
}
table {
font-size:13px;
}
h1 {margin:0; padding:0; font-weight:bold; line-height:1; font-size:13px;color:#93C2DE;
text-shadow: 1px 1px 2px #032F49; display:inline;
}
/*
h2 {
/*master widget headings
font-weight:bold;
line-height:1;
font-size:18px;
margin:0px;
padding:0px;
margin-bottom:5px;
color:#186C9D;
text-shadow: 1px 1px 1px #2E4E61;
}
*/
h3 {
/*widget headings*/
font-weight:bold;
line-height:1;
font-size:18px;
margin:0px;
padding:0px;
margin-bottom:5px;
color:#93C2DE;
text-shadow: 1px 1px 1px #032F49;
display:inline;
}
a{
font-weight:bold;
text-decoration: none;
color:#2E4E61;
}
a:hover{
font-weight:bold;
color: #061D36;
}
img {
border: 0px;
}
ul { margin-top:0;}
/***********************************/
.main {
width:1015px;
margin:0;
padding-left:5px;
padding-top:0;
background: #fff;
}
.CB { clear: both; }
.FL { float: left;}
.widget {
border: 1px solid #2E4E61;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
background: #fff;
background: -moz-linear-gradient(top, #fff, #eee);
background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#eee));
box-shadow: 3px 3px 3px #000000;
-moz-box-shadow: 3px 3px 3px #000000;
-webkit-box-shadow: 3px 3px 3px #000000;
padding:5px;
margin:10px;
color:#2E4E61;
height:auto;
}
.masterWidget {
/*
border: 0px solid #2E4E61;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
*/
/*
background: ##2E4E61;
background: -moz-linear-gradient(top, #93C2DE, #2E4E61);
background: -webkit-gradient(linear, left top, left bottom, from(#93C2DE), to(#2E4E61));
*/
/*
box-shadow: 3px 3px 3px #000000;
-moz-box-shadow: 3px 3px 3px #000000;
-webkit-box-shadow: 3px 3px 3px #000000;
*/
padding:5px;
margin:10px;
color:#2E4E61;
background: #fff;
}
.menuItem {
float:right;
margin-left:10px;
margin-right:10px;
margin-top:0;
margin-bottom:0;
padding-top:0;
padding-bottom:0;
color:#93C2DE;
}
.menuItemActive{
font-weight:bold;
color:#fff;
text-shadow: 1px 1px 2px #032F49;
text-decoration:none;
}
.menuItem a {
color:#93C2DE;
text-shadow: 1px 1px 2px #032F49;
text-decoration:none;
}
.menuItem a:hover {
color:#fff;
text-shadow: 1px 1px 2px #93C2DE;
}
/*
colors
namecoin logo: 186C9D
very light 93C2DE headers
dark 2E4E61 text, borders
very dark 032F49 all shadows
*/