-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmy.css
78 lines (75 loc) · 1.28 KB
/
my.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
68
69
70
71
72
73
74
75
76
77
78
h1 {
text-align: center;
}
body {
font-family: Arial;
background-color: white;
margin: 0;
}
h3 {
text-align: center;
background-color: gainsboro;
}
table {
width: 100%;
}
table, th, td {
border: 2px solid gainsboro;
border-collapse: collapse;
padding: 5px;
}
th {
padding: 10px;
text-align: left;
height: 5px;
background-color: #FBC0BF;
}
.button-container {
display: flex;
justify-content: right;
}
.button-container input {
margin: 0 5px;
background-color: #FBC0BF;
color: black;
border: none;
padding: 5px 10px;
cursor: pointer;
}
.button-container input:hover {
background-color: gainsboro;
}
.modal {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
z-index: 1;
}
.modal-content {
background-color: white;
border: 1px solid gainsboro;
padding: 20px;
width: 50%;
margin: auto;
margin-top: 20px;
}
.modal-button {
background-color: #FBC0BF;
color: white;
border: none;
padding: 10px 20px;
cursor: pointer;
margin-right: 10px;
}
.modal-button.cancel {
background-color: #FBC0BF;
}
@media (max-width: 600px) {
.modal-content {
width: 80%;
}
}