-
Notifications
You must be signed in to change notification settings - Fork 1
/
bogle_tribute_page.css
100 lines (83 loc) · 1.46 KB
/
bogle_tribute_page.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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
/* John Bogle Tribute Page CSS */
@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed');
@media (min-width: 435px) {
body p {
text-align: center;
padding-right: 0px;
padding-left: 0px;
}
}
body {
color: white;
background-color: #D4CFC3;
font-family: 'Roboto Condensed', sans-serif;
font-size: medium;
}
header, figure {
display: flex;
flex-direction: column;
align-items: center;
flex-wrap: wrap;
}
p {
text-align: justify;
padding-right: 2%;
padding-left: 2%;
}
h1 {
font-size: 3em;
margin-bottom: 1%;
text-align: center;
}
h3 {
text-align: center;
}
img {
max-width: 100%;
height: auto;
border-radius: 5px;
}
figcaption {
margin-top: 1%;
}
a:link {
color: #c49559;
text-decoration: none;
}
a:visited {
color: #ecd2b1;
}
a:hover {
color: #003C69;
background-color: white;
}
a:focus {
color: #5C8033;
background-color: white;
}
a:active {
color: #5C8033;
}
footer {
display: flex;
justify-content: center;
color: black;
}
a[href="http://gilbertginsberg.org"] {
color: #003C69;
}
.italic {
font-style: italic;
}
.flex-container {
width: 75%;
display: flex;
flex-direction: column;
align-items: center;
margin-right: auto;
margin-left: auto;
border-radius: 5px;
background: #540B10;
background: -moz-linear-gradient(180deg, #540B10, #781017); /* For Firefox 3.6 to 15 */
background: linear-gradient(180deg, #540B10, #781017); /* Standard syntax */
}