-
Notifications
You must be signed in to change notification settings - Fork 1
/
styles.css
97 lines (78 loc) · 1.62 KB
/
styles.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
body {
background-color: #03001C;
color: white;
margin-top: 0px;
margin-left: 0px;
margin-right: 0px;
margin-bottom: 0px;
position: relative;
bottom: 70px;
text-align: center;
font-family: 'Climate Crisis', cursive;
font-family: 'Cousine', monospace;
}
#DiceSection {
color: white;
font-family: 'Climate Crisis', cursive;
font-family: 'Cousine', monospace;
}
H1{
font-size: 8rem;
text-align: center;
font-family: 'Climate Crisis', cursive;
font-family: 'Cousine', monospace;
}
.ImageClass{
height: 200px;
width: 200px;
padding-top:20px;
}
.TagLine{
display: inline-block;
position: absolute;
top:110px;
left: 740px;
}
.Quote{
width: 915px;
display: inline-block;
font-size: 1.5rem;
margin-top: 57px;
margin-bottom: 8px;
text-align: left;
}
.Author{
width: 915px;
display: inline-block;
font-size: 1.0rem;
margin: 0;
margin-top: 20px;
text-align: right;
}
@media (max-width: 900px) {
body {
margin-top: 50px;
}
.ImageClass{
height: 300px;
width: 300px;
padding-top:30px;
}
#DiceSection{
margin-top: 30px;
}
#QuoteSection{
margin-top: 30px;
}
.Quote{
width: 915px;
display: inline-block;
font-size: 1.3rem;
margin-bottom: 8px;
}
.Author{
width: 915px;
display: inline-block;
font-size: 0.9rem;
}
}