-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
54 lines (49 loc) · 1021 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
51
52
53
54
html {
height: 100%;
width: 100%;
}
button {
cursor: pointer;
width: 100%;
margin-bottom: 10px;
font-size: 16px;
padding: 8px;
border-radius: 5px;
border: none;
color: white;
background-color: rgb(48, 176, 87);
}
.confirmation{
width: 100px;
margin: 10px auto;
margin-left: 10px;
outline: none;
border-radius: 20px;
padding: 5px 10px;
border: none;
background-color: rgb(55, 225, 89);
color: white;
}
form {
background-color: #fff;
padding: 20px;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
margin-top: 20px;
}
input, select {
width: 100%;
padding: 10px;
margin: 5px 0;
box-sizing: border-box;
border: 1px solid #ccc;
border-radius: 4px;
}
li {
background-color: #fff;
padding: 10px;
margin: 5px 0;
border-radius: 4px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
position: relative;
}