-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathoptions.css
122 lines (101 loc) · 1.65 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
* {
user-select: none;
}
body {
margin-left: auto;
margin-right: auto;
width: 584px;
background-color: #231d4b;
color: #eee;
}
div.section {
display: flex;
flex-direction: column;
align-items: stretch;
background-color: rgba(255, 255, 255, 0.055);
border-radius: 15px;
padding: 5px;
margin: 5px;
width: auto;
}
div.container {
display: flex;
justify-content: center;
align-items: center;
background-color: rgba(255, 255, 255, 0.075);
border-radius: 10px;
padding: 5px;
margin: 5px;
width: auto;
}
div.container.row {
justify-content: space-between;
align-items: stretch;
}
div.container.column {
flex-direction: column;
}
label, input, h4, a, select, button {
font-size: 12pt;
margin: 5px;
padding: 5px;
width: auto;
text-align: center;
border-radius: 10px;
}
input {
width: 350px;
background-color: hsl(247deg 31% 26%);
color: #bbbbbb;
}
input:hover, input:focus {
background-color: hsl(247deg 31% 29%);
}
label {
color: #ccc;
}
h4, a {
color: #aaa;
}
input.invalid {
outline: 2px solid red;
}
button {
opacity: 0.9;
cursor: pointer;
}
button:hover {
opacity: 1;
}
.hidden {
display: none !important;
}
.address label, .address input, .address h4, .address a, .address select, .address button {
font-size: 10pt;
margin: 3px;
padding: 3px;
width: auto;
text-align: center;
border-radius: 7px;
}
.address label {}
.address input {
font-family: monospace;
}
.address input:disabled {
background-color: #3e3962;
}
#msg.error {
color: red;
}
#msg.success {
color: lime;
}
#snow {
top: 0;
left: 0;
bottom: 0;
right: 0;
position: fixed;
pointer-events: none;
}