-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathstyle.css
More file actions
138 lines (112 loc) · 2.3 KB
/
Copy pathstyle.css
File metadata and controls
138 lines (112 loc) · 2.3 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
/*
Benhard Simanullang - 24060120140136
Charisto Marc Gybran - 24060120140133
Sabdiel Tarigan - 24060120120028
Julius Adrian - 24060120130127
Andira Faqih Muhammad - 24060120140142
*/
/* membuat posisi form berada di tengah */
body {
display: flex;
align-items: center;
justify-content: center;
background-color: #ffd8a9;
font-family: Arial, Helvetica, sans-serif;
flex-direction: column;
}
ul {
/* menghapus padding default */
padding: 0%;
}
li {
/* membuat efek bayangan */
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
/* menghilangkan titik pada list */
list-style: none;
margin: 12px;
background-color: #fff38c;
padding: 6px;
padding-left: 30px;
border-radius: 10px;
display: flex;
justify-content: space-between;
align-items: center;
width: auto;
}
input {
border: none;
padding: 10px;
border-radius: 10px;
}
button {
border: none;
background-color: #319da0;
color: white;
padding: 10px;
border-radius: 10px;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}
button:hover {
cursor: pointer;
}
#container {
/* membuat posisi text berada di tengah */
text-align: center;
/* memberi space antara garis dengan isi form */
padding: 30px;
/* membuat sudut form melingkar */
border-radius: 20px;
/* membuat warna latar belakang putih */
background-color: #fdeedc;
/* membuat posisi berada di tengah */
margin-top: 3%;
/* membuat efek bayangan */
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
display: block;
}
#warning {
background-color: red;
color: white;
border-radius: 6px;
/* visibility: hidden; */
display: none;
}
#success {
background-color: lightgreen;
color: black;
border-radius: 6px;
/* visibility: hidden; */
display: none;
}
#Delete{
background-color: lightgreen;
color: black;
border-radius: 6px;
/* visibility: hidden; */
display: none;
}
#DeleteAll{
background-color: lightgreen;
color: black;
border-radius: 6px;
/* visibility: hidden; */
display: none;
}
#warning p{
padding: 3px;
}
#success p {
padding: 3px;
}
#Delete p{
padding: 3px;
}
#DeleteAll p{
padding: 3px;
}
#remove{
background-color: red;
}
#removeAll{
background-color: red;
}