-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
60 lines (60 loc) · 955 Bytes
/
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background: salmon;
font-size: 20px;
}
#title {
text-align: center;
color: maroon;
font-weight: bolder;
}
#img-div {
margin: auto;
}
#image {
margin: auto;
margin-top: 30px;
margin-bottom: 30px;
max-width: 100%;
height: auto;
display: block;
}
#img-caption {
text-align: center;
padding: 10px;
margin: 10px;
}
#tribute-info p {
margin: 10px;
padding: 10px;
text-align: center;
}
ul {
/* list-style-type: url('computer2.png'); */
}
ul li {
list-style: url("computer2.png");
margin-left: 20%;
margin-top: 15px;
margin-bottom: 15px;
}
.year {
font-weight: bold;
color: blue;
}
#last {
padding: 50px;
}
#tribute-link {font-weight: bold; color: violet;}
#tribute-link:hover {
color: white;
font-weight: bold;
}
#tribute-link:visited {
color: orangered;
font-weight: bold;
}