-
Notifications
You must be signed in to change notification settings - Fork 2
/
smoke.css
113 lines (98 loc) · 2.2 KB
/
smoke.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
.smoke-base {
position: fixed;
top: 0;
left: 0;
bottom: 0;
right: 0;
visibility: hidden;
opacity: 0
}
.smoke-base.smoke-visible {
opacity: .8;
visibility: visible
}
.smokebg {
position: fixed;
top: 0;
left: 0;
bottom: 0;
right: 0
}
.smoke-base .dialog {
position: absolute;
border-radius: 2px
}
.dialog-prompt {
margin-top: 15px;
text-align: center
}
.dialog-buttons {
margin: 20px 0 5px 0
}
.smoke {
font-family: Menlo, 'Andale Mono', monospace;
text-align: center;
font-size: 13px;
line-height: 150%
}
.dialog-buttons button {
display: inline-block;
vertical-align: baseline;
cursor: pointer;
font-family: Menlo, 'Andale Mono', monospace;
font-style: normal;
text-decoration: none;
border: 0;
outline: 0;
margin: 0 5px;
-webkit-background-clip: padding-box;
font-size: 13px;
line-height: 13px;
font-weight: normal;
padding: 9px 12px
}
.dialog-prompt input {
margin: 0;
border: 0;
font-family: sans-serif;
outline: 0;
font-family: Menlo, 'Andale Mono', monospace;
border: 1px solid #000;
width: 75%;
display: inline-block;
background-color: #555;
font-size: 13px;
padding: 7px
}
.smoke-base {
background: rgba(0, 0, 0, .3);
filter: progid: DXImageTransform.Microsoft.gradient(startColorstr=#90000000, endColorstr=#900000000)
}
.smoke-base .dialog {
top: 25%;
width: 40%;
left: 50%;
margin-left: -20%
}
.smoke-base .dialog-inner {
padding: 15px;
color: #fff
}
.smoke {
background-color: #111;
filter: progid: DXImageTransform.Microsoft.gradient(startColorstr=#ffffff, endColorstr=#ffffff);
box-shadow: 0 2px 8px #666
}
.dialog-buttons button {
background-color: #000;
filter: progid: DXImageTransform.Microsoft.gradient(startColorstr=#222222, endColorstr=#222222);
border-radius: 2px;
color: #999
}
button.cancel {
background-color: #000;
filter: progid: DXImageTransform.Microsoft.gradient(startColorstr=#444444, endColorstr=#444444)
}
.queue {
display: none
}