-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
110 lines (90 loc) · 1.52 KB
/
styles.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
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
* {
margin: 0 auto;
padding: 0;
box-sizing: inherit;
}
html {
/* font-size: 62.5%; */
font-family: Arial, Helvetica, sans-serif;
font-weight: 400;
color: white;
height: 100%;
}
body {
box-sizing: border-box;
background-image: url(./image/bgPhoto.jpg);
background-position: top center;
background-size: cover;
background-repeat: repeat-y;
text-align: center;
height: 100%;
}
form {
top: 25px;
}
@media screen and (max-width: 767px) {
form {
left: 23vw;
}
}
label {
color: white !important;
font-size: 1.2rem !important;
}
input {
width: 60% !important;
}
@media screen and (max-width: 767px) {
input {
width: 50vw !important;
}
}
.hide {
display: none !important;
}
.show {
display: unset;
}
.table {
margin-bottom: 0% !important;
}
.table,
th {
background-color: rgba(255, 255, 255, .8) !important;
text-align: center !important;
font-size: 1.15rem;
}
td {
font-weight: 600 !important;
font-size: 1.1rem;
color: rgba(0, 0, 0, .6);
}
.button-column {
width: 15%;
}
.trash {
width: 100% !important;
padding: .5rem 0 !important;
padding-bottom: 1.5rem !important;
}
#addBtn {
position: absolute;
width: 100%;
padding: .25rem;
}
#closeBtn {
}
@media screen and (max-width: 767px) {
#addBtn {
width: 100%;
}
}
#trashBtn {
width: 40%;
padding: 0 !important;
font-size: 1.1rem;
}
#submitBtn {
margin-top: 20px;
margin-bottom: 50px;
}