-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
120 lines (100 loc) · 1.85 KB
/
style.css
File metadata and controls
120 lines (100 loc) · 1.85 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
body {
font-size: 16px;
background-color: rgb(248, 244, 244);
}
#libraryApp {
display: grid;
grid-template-columns: 3fr 4fr;
grid-template-rows: 1fr;
justify-items: center;
}
#divTable {
padding: 1rem;
}
form {
display: flex;
flex-direction: column;
gap: 1rem;
padding: 1rem;
width: 70%;
}
form div {
display: flex;
flex-direction: column;
gap: 0.5rem 0;
}
#radioButtons {
display: grid;
grid-template-rows: 1fr;
grid-template-columns: repeat(5, auto 1fr);
}
#checkboxButtons {
display: grid;
grid-template-columns: auto 1fr;
grid-template-rows: 1fr 1fr 1fr;
column-gap: 0.5rem;
}
#divButton {
display: grid;
justify-items: center;
}
button {
font-weight: bold;
background-color: indianred;
padding: 0.5rem;
width: 40%;
color:rgb(36, 36, 31);
}
button:hover {
color:lemonchiffon;
box-shadow: inset 0 0 1rem rgb(97, 75, 75);
}
#alert {
display: flex;
flex-direction: column;
color: red;
}
#alert h4 {
margin: 0;
display: flex;
}
#alert ul {
display: grid;
row-gap: 0.3rem;
margin: 0;
padding-bottom: 1rem;
padding-inline-start: 1rem;
}
#bookTable {
border: 1px solid orangered;
box-shadow: 0 0 1rem rgb(97, 75, 75);
word-wrap: break-word;
}
#bookTable th {
padding: 1rem;
background-color: indianred;
vertical-align: middle;
}
#bookTable td {
padding: 0.5rem;
vertical-align: middle;
text-align: center;
}
legend, .label {
font-weight: bold;
}
@media screen and (max-width: 900px) {
#libraryApp {
grid-template-columns: 1fr;
grid-template-rows: 1fr auto;
}
#divTable {
display: grid;
align-content: center;
justify-items: center;
font-size: 0.6rem;
}
#bookTable th {
padding: 0.5rem;
}
}