-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
67 lines (58 loc) · 1.06 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
56
57
58
59
60
61
62
63
64
65
66
67
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap');
/* reset browser default */
* {
margin: 0;
padding: 0;
}
/* added @import google font family to entire document body*/
body {
display: flex;
justify-content: center;
align-items: center;
font-size: 15px;
font-family: 'Poppins', sans-serif;
padding: 15px;
margin: 20px;
background: #eee;
}
section {
background-color: white;
border-radius: 10px;
box-shadow: 5px 5px 20px #f2f2f2;
}
.header {
text-align: center;
color: #fff;
border-radius: 10px 10px 0px 0px;
background: #00a693;
}
.euro-sign-top {
background-color: #eee;
padding: 0.5em;
}
div {
padding: 1em;
}
/* Customize input and select default style */
input,
select {
font-family: 'Poppins', sans-serif;
width: 70%;
appearance: none;
outline: none;
border: none;
border-bottom: 2px #66ffff groove;
margin-top: 1em;
padding: 0.5em;
}
button {
padding: 1em;
background: #00a693;
color: white;
border: none;
width: 100%;
}
.btn,
.final-message {
text-align: center;
}