-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmy.css
More file actions
52 lines (44 loc) · 682 Bytes
/
my.css
File metadata and controls
52 lines (44 loc) · 682 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
@media (min-width: 768px) {
.container {
max-width: 500px;
margin: auto;
}
.btn {
width: 100%;
margin: 10px 10px;
}
}
@media (max-width: 767px) {
.container {
min-width: 100px;
padding: 15px;
margin: auto;
}
.btn {
width: 100%;
margin: 5px 5px;
}
}
table {
background-color: aliceblue;
width: 100%;
height: auto;
}
#add {
background-color: blue;
}
#confirm {
background-color: purple;
}
#cancel {
background-color: red;
}
#delete{
background-color: red;
}
#list {
background-color: blue;
}
#edit {
background-color: purple;
}