-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
59 lines (48 loc) · 1 KB
/
styles.css
File metadata and controls
59 lines (48 loc) · 1 KB
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
/* styles.css */
* {
font-family :verdana,sans-serif;
font-size :14pt; }
body {
width :700px;
position :relative;
margin :7px auto;
background :#f8f8f8;
border :1px solid #888; }
html {
background :#fff }
.appname {
text-align :center;
background :#eb8;
color :#40d;
font-family :helvetica;
font-size :20pt;
padding :4px; }
.loggedon {
background :lightgreen;
border :1px solid green; }
.loggedoff {
background :lightyellow;
border :1px solid yellow; }
.warning {
text-align :center;
background :tomato;
border :1px solid red; }
.notification {
text-align :center;
background :lightblue;
border :1px solid blue; }
li a, .button {
text-decoration :none; }
li a:hover, .button:hover {
color :green; }
.menu li, .button {
display :inline;
padding :4px 6px;
border :1px solid #777;
background :#ddd;
color :#d04;
margin-right :8px;
border-radius :5px;
-moz-box-shadow :2px 2px 2px #888;
-webkit-box-shadow :2px 2px 2px #888;
box-shadow :2px 2px 2px #888; }