-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfreecodecamp-tributepage.css
80 lines (67 loc) · 966 Bytes
/
freecodecamp-tributepage.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
* {
font-family: Arial;
scroll-behavior: smooth;
}
body {
background-color: black;
font-size: 18px;
padding: 20px;
color: #F9F6EE;
}
#header {
padding: 20px;
text-align: center;
}
#main {
background-color: gray;
padding: 20px;
border-radius: 30px;
margin: 50px;
}
#short-description {
font-size: 22px;
font-style: italic;
}
#fig {
background-color: rgba(255, 255, 255, 0.8);
padding-top: 50px;
padding-bottom: 50px;
border-radius: 15px;
}
#image {
display: block;
margin: auto;
width: 80%;
height: 1200px;
border-radius: 15px;
}
#img-caption {
text-align: center;
padding: 10px;
font-size: 14px;
color: gray;
}
li {
padding: 10px;
}
.indent {
margin-left: 2em;
list-style-type: circle;
}
#links {
font-size: 20px;
padding: 30px;
font-family: times;
color: lightgray;
}
a {
color: pink;
}
a:hover {
color: brown;
}
footer {
color: white;
text-align: center;
font-size: 12px
}