-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
50 lines (41 loc) · 867 Bytes
/
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
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
body {
margin: 0;
padding: 20px;
font-family: 'Poppins', sans-serif;
background-color: rgb(186, 191, 255);
}
.container {
text-align: center;
background-color: white;
max-width: 600px;
margin: 0 auto;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
padding: 10px;
margin-top: 30px;
border-radius: 10px;
}
p {
font-size: 25px;
font-weight: bold;
}
input[type=date] {
width: 50%;
height: 31px;
border-radius: 7px;
border: 1px solid grey;
margin: 10px;
padding: 3px 10px;
}
button[type=submit] {
background-color: #007bff;
padding: 10px 20px;
font-size: large;
border: none;
border-radius: 7px;
color: white;
margin-top: 10px;
}
button[type=submit]:hover {
background-color: #0165cf;
}