-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
90 lines (83 loc) · 1.27 KB
/
index.css
File metadata and controls
90 lines (83 loc) · 1.27 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
body{
margin:0;
padding:0;
height:100%;
background-color: powderblue;
border: 1px solid black;
}
h1{
color:black;
text-align: center;
font-family:sans-serif;
margin:48px;
border-bottom: 2px solid black;
}
h2{
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
text-align: center;
font-size: x-large;
color: black;
}
#wrapper {
min-height:100%;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
#footer {
font-family: arial;
font-style: italic;
font-size:0.7em;
text-align: center;
}
#quote-box
{
display: flex;
flex-direction: column;
padding-bottom:0px;
width: 450px;
background-color: white;
border-radius: 7px;
text-align: center;
padding: 10px;
}
#text {
font-size: 1.4em;
font-style: regular;
font-family: sans-serif;
}
.authorbox {
font: verdana;
font-size: 0.5em;
text-align: right;
}
#author {
font-size: 11px;
font-style: italic;
}
.button-container {
display: flex;
flex-direction: row;
justify-content: space-between;
padding: 10px;
}
.quote-buttons {
color: white;
border-radius: 4px;
background-color: black;
font-size: 14px;
padding: 5px;
cursor: pointer;
}
#left-button {
float: left;
display: inline;
width: 50%;
text-align: left;
}
#right-button {
float: right;
display: inline;
text-align: right;
}