-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyles.css
53 lines (53 loc) · 1008 Bytes
/
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
body {
background-color: white;
color: black;
}
h1.title {
font-size: 30px;
font-style: normal;
font-family: fantasy;
}
p.title {
font-size: 30px;
font-style: normal;
font-family: cursive;
}
p.authors {
font-size: 24px;
font-family:cursive;
text-align: left;
}
p.text {
font-size: 14px;
font-family:sans-serif;
}
table.master {
table-layout: auto;
width: 100%;
}
img.book {
width: 150px;
height: 225px;
}
input[type=text] {
padding: 5px;
margin:5px 0; // add top and bottom margin
//box-shadow:0 0 15px 4px rgba(0,0,0,0.06);
border-radius: 10px;
background: whitesmoke;
color: black;
font-family: sans-serif;
font-size: 16;
width: 50%
}
input[type=submit] {
padding: 5px;
margin:5px 0; // add top and bottom margin
//box-shadow:0 0 15px 4px rgba(0,0,0,0.06);
border-radius: 10px;
background: whitesmoke;
color: black;
font-family: sans-serif;
font-size: 16;
width: 10%
}