-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
55 lines (54 loc) · 1.02 KB
/
style.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
* {
margin: 0;
padding: 0;
}
body {
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande',
'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
background-color: rgb(33 33 33);
display: flex;
color: #e4e4e4;
flex-direction: column;
align-items: center;
min-height: 76vh;
justify-content: center;
max-width: 1280px;
margin: auto;
}
button {
background-color: rgb(0 0 0);
color: #e4e4e4;
box-shadow: 0 0 2px black;
font-size: 14px;
font-weight: 600;
padding: 1em;
min-width: 175px;
border-radius: 4px;
outline: none;
border: none;
cursor: pointer;
text-transform: uppercase;
transition: background-color 0.3s;
margin: 1rem auto;
margin-bottom: 0.5rem;
}
button:hover {
background-color: rgb(114 153 197);
}
select {
outline: none;
padding: 9px;
min-width: 75px;
color: #fff;
border: none;
font-size: 18px;
text-align: center;
appearance: none;
border-radius: 5px;
margin-bottom: 15px;
margin-top: 10px;
}
select,
option {
background: rgb(59 101 168);
}