-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
73 lines (63 loc) · 1.06 KB
/
Copy pathstyle.css
File metadata and controls
73 lines (63 loc) · 1.06 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
font-family: 'Lato','Times New Roman', Times, serif;
background-color: white;
text-align: center;
color: #333;
line-height: 1.2;
font-size: 1.2rem;
}
#main{
margin: 40px 15px;
background-color: #eee;
border-radius: 8px;
padding: 15px;
}
header{
font-size: 2.5rem;
padding: 20px;
}
#titleCaption{
font-size: 1.2rem;
}
#figure{
height: 100%;
width: auto;
display: flex;
justify-content: space-around;
margin: 20px;
padding: 20px;
background-color: white;
border-radius: 8px;
}
img{
height: 200px;
width: 200px;
border: black 6px solid;
}
#tribute-info{
max-width: 550px;
margin: 0 auto 50px auto;
text-align: left;
line-height: 1.6;
}
blockquote{
font-style: italic;
max-width: 545px;
margin: 0 auto 50px auto;
text-align: left;
}
a{
color: #477ca7;
}
@media (max-width: 500px){
img{
height: 100px;
width: 100px;
border: black 4px solid;
}
}