-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
84 lines (68 loc) · 1.18 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
body {
font-family: Helvetica, sans-serif;
background-color: antiquewhite;
}
/* html tag styles */
h1 {
color:cadetblue;
font-size: 50px;
padding-bottom: 16px;
text-align: center;
}
h3{
color: cadetblue;
font-size: 25px;
}
/* controls the attributes of all
img tags in project */
img {
border-radius: 10px;
border: 10px solid cadetblue;
width: 500px;
height:"auto";
display:block;
margin: 0 auto;
}
p {
font-size: 20px;
}
/* style ol tags */
.olist {
color:cadetblue;
margin-left: 15%;
font-size: 25px;
padding: 10px;
}
.ulist {
padding: 10px;
font-size: 25px;
}
a{
font-size: 40px;
text-decoration: none;
color:cadetblue;
padding: 16px;
text-align: center;
position: relative;
}
a:hover{
color:darkblue;
}
/* removes dots in index */
.list {
list-style: none;
}
/* centers p and ul tags in index */
.spacing {
text-align: center ;
padding:10px
}
/* shifts h3 ul and p tags under img tag in
pizza, gelato, and lasagna.html */
.shifted , .ulist {
padding-left: 23%;
}
/* shifts the links on the bottom of the page */
.shift2 {
margin-left: 15%;
}