-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
79 lines (66 loc) · 1.11 KB
/
style.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
#container {
width: 60%;
margin-left: auto;
margin-right: auto;
}
#container h1 {
font-family: 'Roboto Mono', monospace;
}
#book-form label {
font-family: 'Roboto Mono', monospace;
font-weight: 700;
display: block;
margin-bottom: 2px;
}
#book-form>div {
margin-bottom: 20px;
}
#book-form div>input {
font-weight: 700;
border: 1px solid gray;
border-radius: 5px;
width: 100%;
padding: 7px 0;
}
#book-form div>input:focus {
outline: none;
}
#submit {
padding: 6px 29px;
border: 1px solid gray;
border-radius: 3px;
background-color: #fff;
transition: background-color 100ms ease-in-out;
margin-bottom: 30px;
}
#submit:hover {
cursor: pointer;
background-color: rgb(238, 235, 235);
}
#submit:active {
background-color: #fff;
}
#data-book td {
padding-bottom: 10px;
}
thead th {
font-size: 18px;
text-align: left;
padding-bottom: 10px;
}
.error {
background-color: red;
color: white;
padding: 10px;
margin-bottom: 23px;
}
.success {
background-color: green;
color: white;
padding: 10px;
margin-bottom: 23px;
}
.delete {
text-decoration: none;
color: red;
}