-
Notifications
You must be signed in to change notification settings - Fork 0
/
openstudy_extended.css
85 lines (80 loc) · 2.75 KB
/
openstudy_extended.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
.custom-dialog.dialog {
position: fixed;
width: auto;
height: auto;
left: 15%;
z-index: 3;
padding: 0;
border: 0;
-moz-box-shadow: rgba(0,0,0,0.5) 0 0 40px;
-webkit-box-shadow: rgba(0,0,0,0.5) 0 0 40px;
-o-box-shadow: rgba(0,0,0,0.5) 0 0 40px;
box-shadow: rgba(0,0,0,0.5) 0 0 40px;
}
.custom-dialog.dialog .dialog-body {
-moz-border-radius-bottomleft: 3px;
-webkit-border-bottom-left-radius: 3px;
-o-border-bottom-left-radius: 3px;
-ms-border-bottom-left-radius: 3px;
-khtml-border-bottom-left-radius: 3px;
border-bottom-left-radius: 3px;
-moz-border-radius-bottomright: 3px;
-webkit-border-bottom-right-radius: 3px;
-o-border-bottom-right-radius: 3px;
-ms-border-bottom-right-radius: 3px;
-khtml-border-bottom-right-radius: 3px;
border-bottom-right-radius: 3px;
padding: 20px 20px 15px;
background: #e6e6e6;
}
li.post-reply #notebook-button {
border: 0;
background: #2db6fa;
color: #fff;
border-radius: 2px;
font-size: 12px;
height: 22px;
line-height: 12px;
font-family: "Lucida Sans","Helvetica Neue",Helvetica,sans-serif;
font-weight: normal;
}
li.post-reply #notebook-button:hover {
cursor: pointer;
opacity: 0.8;
}
.custom-dialog.dialog button.custom-button {
float: left;
color: #fff;
font-size: 12px;
background: #51c9ff;
background-image: -webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#51c9ff),color-stop(100%,#24b1f8));
background-image: -webkit-linear-gradient(#51c9ff,#24b1f8);
background-image: -moz-linear-gradient(#51c9ff,#24b1f8);
background-image: -o-linear-gradient(#51c9ff,#24b1f8);
background-image: -ms-linear-gradient(#51c9ff,#24b1f8);
background-image: linear-gradient(#51c9ff,#24b1f8);
border: 0;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
-o-border-radius: 3px;
-ms-border-radius: 3px;
-khtml-border-radius: 3px;
border-radius: 3px;
-moz-box-shadow: rgba(255,255,255,0.3) 1px 1px 1px inset,rgba(0,0,0,0.1) -1px -1px 1px inset;
-webkit-box-shadow: rgba(255,255,255,0.3) 1px 1px 1px inset,rgba(0,0,0,0.1) -1px -1px 1px inset;
-o-box-shadow: rgba(255,255,255,0.3) 1px 1px 1px inset,rgba(0,0,0,0.1) -1px -1px 1px inset;
box-shadow: rgba(255,255,255,0.3) 1px 1px 1px inset,rgba(0,0,0,0.1) -1px -1px 1px inset;
cursor: pointer;
padding: 3px 10px;
position: relative;
}
.custom-dialog.dialog button.custom-button:hover {
text-decoration: none;
background: #1eb9ff;
background-image: -webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#1eb9ff),color-stop(100%,#0799e2));
background-image: -webkit-linear-gradient(#1eb9ff,#0799e2);
background-image: -moz-linear-gradient(#1eb9ff,#0799e2);
background-image: -o-linear-gradient(#1eb9ff,#0799e2);
background-image: -ms-linear-gradient(#1eb9ff,#0799e2);
background-image: linear-gradient(#1eb9ff,#0799e2);
}