-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
48 lines (48 loc) · 947 Bytes
/
main.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
@import url('https://fonts.googleapis.com/css?family=PT+Serif');
html {
position: relative;
min-height: 100%;
}
body {
/* Margin bottom by footer height */
margin-bottom: 80px;
font-family: 'PT Serif', serif;
}
.footer {
position: absolute;
bottom: 0;
width: 100%;
/* Set the fixed height of the footer here */
height: 80px;
text-align: center;
/* margin-top: 20px; */
/* padding: 20px 0 20px 0; */
}
header {
background-color: rgb(2, 27, 54);
padding: 50px 50px 50px 50px;
margin-bottom: 50px;
color: white;
}
hr {
height: 1px;
width: 60%;
border-top: 1px solid rgb(199, 199, 199);
padding: 0;
}
.myQuoteDiv {
padding: 20px 15px 20px 15px;
}
.myQuoteText {
border: 2px solid rgb(2, 27, 54);
border-radius: 50px;
padding: 40px 40px 40px 40px;
display: none;
}
.myTweet {
padding: 20px 20px 20px 20px;
margin-top: 30px;
margin-bottom: 20px;
border-radius: 10px;
float: right;
}