-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
181 lines (157 loc) · 3.57 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
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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
/*
Contains styles for web app
*/
/*
Created on : 07-Feb-2014, 15:06:55
Author : declan maher
*/
body
{
font: 100%/1.4 helvetica, arial, sans-serif;
color: #444;
background: #fff;
}
h1, h2, h3, h4, h5, h6
{
margin: 0 0 .6em;
line-height: 1.1;
}
h2, h3 { color: #fff; }
h2 { font-size: 150%; }
h3 { font-size: 120%; color:#444 }
#content h3 { clear: left; }
.main{
margin: 10px;
}
mainlogin{
margin: 200px;
text-align:center;
}
/* -----------------------------------
header
----------------------------------- */
#header-container
{
float: left;
width: 100%;
background: #075385 repeat-x 0 100%;
border-bottom: 1px solid #cae298;
}
.home #header-container { border-bottom: 1px solid #609dbc; }
#header
{
margin: 0 auto;
padding: 0px 50px 20px 10px;
}
/* -----------------------------------
navigation
----------------------------------- */
#navigation
{
margin: 38px 0;
font-size: 93.75%;
line-height: 1;
}
#navigation ul
{
margin: 0;
padding: 0;
}
#navigation li
{
margin: 0;
padding: 0;
display: inline;
list-style-type: none;
}
#navigation a
{
display: block;
float: left;
margin: 0 0 0 2px;
padding: 6px 10px;
color: #fff;
font-weight: bold;
text-decoration: none;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
}
.home #home-nav a
{
background: #6e9800;
}
#navigation a:focus
{
color: #fff;
background: #000;
}
#navigation a:hover
{
color: #003d5d;
background: #d5f1f9;
-webkit-transition-duration: 0.7s;
-webkit-transform: scale(1);
}
img{
border: 2px;
}
article, aside, figure, footer, header, hgroup,
menu, nav, section {
display: block; }
ul {
width: 100%;
}
ul > li {
float: left;
list-style: none;
padding: 4px;
}
.button {
-moz-box-shadow:inset 0px 1px 0px 0px #ffffff;
-webkit-box-shadow:inset 0px 1px 0px 0px #ffffff;
box-shadow:inset 0px 1px 0px 0px #ffffff;
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #ededed), color-stop(1, #dfdfdf) );
background:-moz-linear-gradient( center top, #ededed 5%, #dfdfdf 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ededed', endColorstr='#dfdfdf');
background-color:#ededed;
-webkit-border-top-left-radius:6px;
-moz-border-radius-topleft:6px;
border-top-left-radius:6px;
-webkit-border-top-right-radius:6px;
-moz-border-radius-topright:6px;
border-top-right-radius:6px;
-webkit-border-bottom-right-radius:6px;
-moz-border-radius-bottomright:6px;
border-bottom-right-radius:6px;
-webkit-border-bottom-left-radius:6px;
-moz-border-radius-bottomleft:6px;
border-bottom-left-radius:6px;
text-indent:0;
border:1px solid #dcdcdc;
display:inline-block;
color:#777777;
font-family:arial;
font-size:14px;
font-weight:bold;
font-style:normal;
height:50px;
line-height:50px;
width:178px;
text-decoration:none;
text-align:center;
text-shadow:1px 1px 0px #ffffff;
}
.button:hover {
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #dfdfdf), color-stop(1, #ededed) );
background:-moz-linear-gradient( center top, #dfdfdf 5%, #ededed 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#dfdfdf', endColorstr='#ededed');
background-color:#dfdfdf;
}.button:active {
position:relative;
top:1px;
}
#help{
margin-left: 20px;
padding: 5px 10px 5px 10px;
}