-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmarley.css
56 lines (55 loc) · 1.2 KB
/
marley.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
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap" rel="stylesheet');
img {
width: 50%;
margin: 1px auto;
display: block;
opacity: 0.5;
filter: alpha(opacity=50);
border-radius: 10%;
}
img:hover {
opacity: 1.0;
filter: alpha(opacity=100);
}
main {
}
body {
font-family: Montserrat;
background-color: red;
background: -moz-linear-gradient(right, green 0%, yellow 50%, red 100%);
background: -webkit-linear-gradient(right, green 0%, yellow 50%, red 100%);
background: linear-gradient(right, green 0%, yellow 50%, red 100%);
color: black;
}
#bob-facts {
width: ;
text-align: left;
margin: auto;
padding: auto;
}
blockquote{
border:none;
font-family: Montserrat;
margin-bottom: -20px;
quotes: "\201C""\201D""\2018""\2019";
}
blockquote h3{
font-size: 21px;
padding: 1em;
}
blockquote h3:before{
content:open-quote;
font-size: 100px;
font-weight: bold;
color:#889c0b;
line-height: 0.1em;
}
blockquote h3:after{
content: close-quote;
font-weight: bold;
color:#889c0b;
font-size: 100px;
}
li{
list-style-type: square;
}