-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
56 lines (50 loc) · 864 Bytes
/
style.css
File metadata and controls
56 lines (50 loc) · 864 Bytes
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
#wrapper {
width:960px;
margin:10px auto 20px;
}
/*Write controls*/
#write_form {
display:none;
}
#moods label{
height: 70px;
width: 70px;
}
#message_box {
width:600px;
height:100px;
}
/*jquery radio */
.ui-state-active, .ui-state-hover {
background:#aaa;
-moz-border-radius: 35px;
border-radius: 35px;
-moz-box-shadow: 0 0 5px 5px #ddd;
-webkit-box-shadow: 0 0 5px 5px#dd;
box-shadow: 0 0 5px 5px #ddd;
}
.ui-helper-hidden {
display: none;
}
.ui-helper-hidden-accessible {
clip: rect(1px, 1px, 1px, 1px);
position: absolute !important;
}
/*Message styles*/
.message {
float:left;
border:5px solid #eee;
height:100px;
width:170px;
margin:10px;
padding:10px;
}
.hidden {
display:none;
}
.great, .good {
border:5px solid green;
}
.bad {
border:5px solid red;
}