-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
93 lines (77 loc) · 1.69 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
@import url(https://fonts.googleapis.com/css?family=Raleway);
@import url(https://fonts.googleapis.com/css?family=Droid+Serif);
* {
margin: 0;
padding: 0;
box-sizing: border-box; }
.bg {
max-width: 100vw;
background-color: #FED5AC;
color: #582A1D; }
h1 {
font-family: 'Raleway', sans-serif;
text-align: center;
padding: 1em; }
.quotes, .quoteMark, .credit {
font-family: "droid serif", serif;
position: absolute;
margin-left: 10vw; }
.quoteMark {
font-size: 8rem;
margin-left: 12vw; }
.credit {
font-size: 1.5rem;
margin-left: 16vw;
margin-top: -8vh; }
#quoteSpace {
width: 80%;
height: 15%;
margin: 0 auto;
padding: 10vh;
font-family: 'Droid Serif', serif;
font-size: 1.5rem; }
ul {
list-style: none; }
.container {
max-width: 50%;
margin: 0 auto;
display: flex;
flex-direction: row;
-webkit-flex-direction: row;
align-items: center;
justify-content: space-around; }
.box {
max-width: 32%;
padding: 1em; }
.chart {
display: flex;
flex-direction: row;
flex-wrap: wrap; }
.chart li {
max-width: 33%; }
.crew {
cursor: pointer;
padding: 1em;
font-family: "Raleway", sans-serif;
font-size: 1em;
border-radius: 5%;
background-color: #582A1D;
display: flex;
flex-wrap: wrap;
margin: 0 auto;
color: #FED5AC;
border: 1px solid #8b3f2d; }
img {
max-width: 150px;
height: auto;
border-radius: 5%;
border: 2px solid #c9c33d; }
button {
box-shadow: 0px 1px 1px #FED5AC inset, 1px 1px 3px #AC7638;
transition: box-shadow 0.3s ease-in-out; }
button:hover {
background-color: #381a12; }
button:active {
box-shadow: 1px 1px 2px #AC7638 inset;
background-color: #582A1D; }
/*# sourceMappingURL=styles.css.map */