-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
99 lines (82 loc) · 1.37 KB
/
styles.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
/* Example 26-13: styles.css */
* {
font-family:verdana,sans-serif;
font-size :14pt;
}
body {
width :80%;
margin :20px auto;
background:#f8f8f8;
border :1px solid #888;
}
#container1, #container2{
visibility: hidden;
}
html {
background:#fff
}
img {
border :1px solid black;
margin-right :15px;
-moz-box-shadow :2px 2px 2px #888;
-webkit-box-shadow:2px 2px 2px #888;
box-shadow :2px 2px 2px #888;
}
li a, .button {
text-decoration:none;
}
li a:hover, .button:hover {
color:green;
}
.appname {
text-align :center;
background :rgb(198, 237, 240);
color :rgb(169, 136, 245);
font-family:helvetica;
font-size :20pt;
padding :4px;
}
.fieldname {
float:left;
width:120px;
}
form{
width: 80%;
}
.menu li, .button {
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;
}
ul{
padding-left: 5%;
list-style-type: none;
}
.taken, .error {
color:red;
}
.available {
color:green;
}
.whisper {
font-style:italic;
color :#006600;
}
.mine{
width: 70%;
margin-left: 20%;
padding: 5%;
}
.stats{
margin: 0 auto;
}
.left{
width: 20%;
float: left;
}