-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
52 lines (49 loc) · 804 Bytes
/
index.css
File metadata and controls
52 lines (49 loc) · 804 Bytes
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: #eccc68;
font-family: 'Bangers', cursive;
}
#app {
width: 40%;
margin: 50px auto;
text-align: center;
line-height: 3rem;
}
main {
padding-top: 2rem;
padding-bottom: 2rem;
background-color: white;
display: flex;
flex-direction: column;
border-radius: 0 0 10px 10px;
}
#header {
background-color: #ff6348;
border-radius: 10px 10px 0 0;
color: white;
}
input,
select {
width: 50%;
margin: 0 auto;
padding: 10px;
border-radius: 5px;
border: none;
background-color: #dfe4ea;
}
button {
background-color: #ff6348;
border: none;
padding: 20px 40px;
font-size: 1.1rem;
border-radius: 5px;
outline: none;
color: white;
}
button:hover {
background-color: chartreuse;
}