-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
options.css
161 lines (147 loc) · 2.98 KB
/
options.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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.box {
display: flex;
width: 100%;
height: 8px;
margin: 5px 0px 20px 0px;
}
.box-sm {
height: 8px;
margin: 0;
flex-grow: 1;
transition: all 0.8s ease-in-out;
cursor: pointer;
}
.box-sm:hover {
flex-grow: 12;
}
.id-1 {
background-color: #006D77;
}
.id-2 {
background-color: #FF6F61;
}
.id-3 {
background-color: #94B49F;
}
.id-4 {
background-color: #F4D35E;
}
.id-5 {
background-color: #56C7E1;
}
.id-6 {
background-color: #B39BC8;
}
.container {
background-color: #fff;
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
width: 400px;
}
h1 {
font-size: 1.5em;
margin-bottom: 20px;
}
.form-group {
margin-bottom: 15px;
}
label {
display: block;
font-weight: bold;
margin-bottom: 5px;
}
input[type="text"] {
width: 100%;
padding: 8px 0px;
border: 1px solid #ccc;
border-radius: 4px;
margin-top: 5px;
display: inline-block;
}
.shortcut-btn {
width: 100%;
padding: 10px;
border: none;
border-radius: 4px;
background-color: #4CAF50;
}
.save-btn {
align-items: center;
background-color: #FFFFFF;
border: 1px solid rgba(0, 0, 0, 0.1);
border-radius: .25rem;
box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
box-sizing: border-box;
color: rgba(0, 0, 0, 0.85);
cursor: pointer;
display: inline-flex;
font-family: system-ui,-apple-system,system-ui,"Helvetica Neue",Helvetica,Arial,sans-serif;
font-size: 16px;
font-weight: 600;
justify-content: center;
line-height: 1.25;
margin: 0;
min-height: 3rem;
padding: calc(.875rem - 1px) calc(1.5rem - 1px);
position: relative;
text-decoration: none;
transition: all 250ms;
user-select: none;
-webkit-user-select: none;
touch-action: manipulation;
vertical-align: baseline;
width: auto;
}
.save-btn:hover,
.save-btn:focus {
border-color: rgba(0, 0, 0, 0.15);
box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
color: rgba(0, 0, 0, 0.65);
}
.save-btn:hover {
transform: translateY(-1px);
}
.save-btn:active {
background-color: #F0F0F1;
border-color: rgba(0, 0, 0, 0.15);
box-shadow: rgba(0, 0, 0, 0.06) 0 2px 4px;
color: rgba(0, 0, 0, 0.65);
transform: translateY(0);
}
span {
font-family: 'Roboto', sans-serif;
text-align: center;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
color: #666;
font-size: 12px;
display: block;
position: absolute;
bottom: 10px;
position: absolute;
width: 90%;
left: 50%;
bottom: auto;
right: auto;
transform: translateX(-50%) translateY(-50%);
text-align: center; }
span .city {
color: #000000;
text-decoration: none; }
@-webkit-keyframes pound {
to {
transform: scale(1.1); } }
@keyframes pound {
to {
transform: scale(1.1); } }