forked from HackYourFuture/JavaScript2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
70 lines (68 loc) · 1.08 KB
/
index.css
File metadata and controls
70 lines (68 loc) · 1.08 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
body {
margin: 0;
padding: 0;
box-sizing: border-box;
background-color: #ffa500;
}
#container {
display: flex;
align-items: center;
justify-content: center;
}
#sub-container {
display: flex;
flex-direction: column;
justify-content: space-evenly;
background-color: white;
color: #ffa500;
height: 400px;
width: 900px;
margin: 10rem;
padding: 2rem;
}
#quote-author {
display: flex;
flex-direction: column;
}
#output {
font-size: 2rem;
}
#author {
font-size: 1.5rem;
align-self: flex-end;
margin-right: 5.3rem;
margin-top: 3rem;
}
#next-icons {
display: flex;
flex-direction: row;
justify-content: space-between;
padding: 0.4rem;
}
#quote-btn {
background-color: #ffa500;
color: white;
font-size: 1.4rem;
padding: 1rem;
margin-right: 5rem;
cursor: pointer;
}
#socialMedia {
display: flex;
flex-direction: row;
justify-content: center;
padding: 0.3rem;
}
.fab {
background-color: #ffa500;
margin: 0.5rem;
padding: 1rem;
color: white;
}
.fas {
margin-right: 0.5rem;
}
#generator {
display: flex;
flex-direction: row;
}