-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.css
91 lines (78 loc) · 1.45 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
* {
box-sizing: border-box;
-webkit-tap-highlight-color: transparent;
}
body {
background: linear-gradient(#2a4a9c, #2fb8f4);
color: rgb(250, 250, 250);
margin: 0;
padding: 1rem;
width: 30rem;
font-family: 'Montserrat', Helvetica, sans-serif;
font-size: 14px;
}
h2 {
margin-top: 2rem;
}
button {
background-color: rgb(255, 128, 38);
border: none;
border-radius: 5px;
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
color: white;
font-size: 1rem;
padding: 0.5rem 1.6rem;
width: 7rem;
height: 2rem;
cursor: pointer;
text-transform: uppercase;
transition: background-color 0.1s linear;
text-decoration: none;
text-align: center;
font-family: Helvetica;
}
button:hover {
background-color: rgb(255, 163, 98);
}
button:focus {
outline: 0;
}
.logo {
width: 100%;
padding-bottom: 0.2rem;
margin-bottom: 0.8rem;
}
img {
width: 60%;
height: auto;
}
h3 {
font-size: 1rem;
margin-bottom: 0.3rem;
}
select {
width: 100%;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
background-color: inherit;
padding: 0.3rem 0 0.5rem;
margin-bottom: 1rem;
border: none;
border-bottom: 1px solid #fff;
color: white;
font-size: 1rem;
font-family: Helvetica;
border-radius: 0;
background: url("/images/chevron-down-white.svg") no-repeat 96%;
}
select:focus {
outline: 0;
}
option {
background-color: #2A3F55;
}
#status {
margin-bottom: 0.5rem;
transition: opacity 0.5s linear;
}