-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathoptions.css
97 lines (84 loc) · 1.54 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
*, *::before, *::after {
box-sizing: border-box;
}
body {
font-family: Arial, Helvetica, sans-serif;
color: #F3F3F3;
background-color: #0D0D0D;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.row {
padding: 10px;
display: flex;
align-items: center;
}
.row label {
font-size: 1.2rem;
}
.row input {
color: #FFFFFF;
font-size: 1.2rem;
margin-left: .5rem;
border: 1px solid #000000;
border-radius: .5rem;
padding: .25rem .5rem;
background-color: #595959;
}
.row input:hover,
.row input:active,
.row input:focus {
border: 1px solid #A6A6A6;
background-color: #3b3b3b;
}
.btn {
font-size: 1.2rem;
cursor: pointer;
background-color: #348899;
border: none;
outline: none;
color: #FFFFFF;
padding: .5rem 1rem;
text-transform: uppercase;
border-radius: .5rem;
}
.btn-danger {
background-color: #962D3E;
}
.btn:hover,
.btn:focus,
.btn:active {
background-color: #296b79;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active {
background-color: #802534;
}
.save-btn {
margin-top: 2rem;
}
.removeRow {
width: 2rem;
height: 2rem;
text-align: center;
border-radius: 100%;
margin-left: .5rem;
position: relative;
}
.removeRow::after {
content: "";
width: 1rem;
height: .2rem;
background-color: #FFFFFF;
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
border-radius: .25rem;
}
.find {
margin-right: 1rem;
}