-
Notifications
You must be signed in to change notification settings - Fork 0
/
options.scss
125 lines (125 loc) · 2.47 KB
/
options.scss
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
114
115
116
117
118
119
120
121
122
123
124
125
* {
margin: 0;
padding: 0;
outline: none;
}
ul {
list-style: none;
}
html, body {
width: 100%;
height: 100%;
}
body {
font-family: "Helvetica Neue", Helvetica, "Nimbus Sans L", Arial, "Liberation Sans", sans-serif;
background: linear-gradient(to bottom, #E8E8E8, #BFBFBF);
text-align: center;
font-size: 0;
cursor: default;
}
#vertical-center {
display: inline-block;
width: 0;
height: 50%;
}
#content {
display: inline-block;
position: relative;
vertical-align: middle;
box-sizing: border-box;
padding: 20px 30px;
background: linear-gradient(to bottom, #f3f3f3, #f6f6f6, #f3f3f3);
box-shadow: 0 2px 10px 1px #666;
border-radius: 10px;
font-size: 14px;
}
#title {
text-shadow: 0 1px 1px black;
text-transform: uppercase;
font-size: 20px;
}
#settings {
text-align: left;
overflow: hidden;
}
.item {
margin-top: 10px;
margin-bottom: 10px;
overflow: hidden;
}
.item:last-child {
margin-bottom: 0;
}
.desc {
font-size: 15px;
font-weight: bold;
}
.hint {
margin: 3px 0;
color: #444;
font-style: italic;
}
input {
display: inline-block;
vertical-align: middle;
}
input[type="text"] {
padding: 4px;
border-radius: 4px;
border: none;
}
input[type="text"]:focus {
box-shadow: 0 0 3px white;
}
input[type="checkbox"] {
width: 15px;
height: 15px;
}
input[type="checkbox"].float-left {
width: 18px;
height: 18px;
margin-right: 10px;
}
.float-left {
float: left;
}
.dict-area {
//width: 400px;
}
.dict-list {
border: 3px solid #bbb;
border-radius: 4px;
}
.dict-list-item {
padding: 5px;
margin: 5px;
border: 2px solid lightblue;
border-radius: 4px;
}
.dict-list-item * {
margin-right: 5px;
}
.dict-list-item img {
vertical-align: middle;
}
button {
float: right;
margin-right: 22px;
border: 1px solid rgb(255, 255, 255);
background: -webkit-linear-gradient(bottom, rgb(223, 226, 226) 25%, rgb(255, 255, 255) 68%);
color: rgb(51, 51, 51);
cursor: pointer;
font-weight: bold;
padding: 3px 11px;
border-radius: 3px;
-webkit-box-shadow: rgba(50, 50, 50, 0.74902) 0px 1px 3px;
box-shadow: rgba(50, 50, 50, 0.74902) 0px 1px 3px;
font-size: 12px;
text-align: center;
}
button:hover {
background: -webkit-gradient(linear, 0% 100%, 0% 0%, color-stop(0.25, rgb(184, 222, 243)), color-stop(0.68, rgb(255, 255, 255))) rgb(199, 233, 255);
}
button:active {
background: -webkit-gradient(linear, 0% 100%, 0% 0%, color-stop(0.25, rgb(116, 183, 221)), color-stop(0.68, rgb(227, 244, 252))) rgb(144, 182, 255);
}