forked from ianistheguy/bookshelf-app
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
113 lines (96 loc) · 1.99 KB
/
style.css
File metadata and controls
113 lines (96 loc) · 1.99 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
body {
min-width: 320px;
box-sizing: border-box;
background-image: url('trinity_college_bg.jpg');
background-repeat: no-repeat;
background-size: cover;
}
#title {
background-color: #e09e69;
font-family: 'Cinzel', serif;
font-size: 36px;
text-align: center;
border-style: groove;
border-width: 15px;
border-color: rgb(179, 110, 83);
padding: 20px;
margin: 20px auto 30px;
width: 40vw;
min-width: 20vw;
}
#page-outer {
background-color: #e09e69;
margin: 0 auto;
border-radius: 1em;
border-style: groove;
border-width: 1em;
border-color: rgb(179, 110, 83);
padding: 20px;
width: 75%;
height: auto;
}
.button-wrapper, #new-book {
padding: 10px 20px;
}
.button-wrapper {
margin: 0 auto 20px;
position: relative;
width: 150px;
}
#new-book {
border: 1px outset;
font-family: 'Libre Baskerville', serif;
font-size: 18px;
}
.form, #submit, #cancel, .change-status, .remove-book {
font-family: 'Crimson Text', serif;
}
.form {
border: 1px solid grey;
background-color: #f5ad68;
padding: 10px;
width: 60%;
height: auto;
margin: 0 auto 10vh auto;
}
.form-container {
margin: 15px;
}
#form-heading {
margin: 0 auto;
text-align: center;
}
label {
margin-bottom: 10px;
font-size: 18px;
}
input[type="text"], input[type="number"] {
width: 95%;
padding: 8px;
font-size: 14px;
margin-bottom: 10px;
}
table {
font-family: 'Lora', serif;
table-layout: auto;
width: 100%;
border: 1px inset rgb(179, 110, 83);
line-height: 2;
}
tbody > tr {
transition: background-color 0.5s;
text-align: center;
}
tbody > tr:hover {
background-color: rgba(255, 187, 160, 0.678);
}
td {
border: 1px inset rgb(179, 110, 83);
}
#submit, #cancel {
font-size: 20px;
border: 1px outset;
}
#cancel {
float: right;
}