-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.scss
More file actions
119 lines (97 loc) · 1.62 KB
/
styles.scss
File metadata and controls
119 lines (97 loc) · 1.62 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
@import url(https://fonts.googleapis.com/css?family=Raleway);
@import url(https://fonts.googleapis.com/css?family=Droid+Serif);
.bg {
max-width: 100vw;
background-color: #FED5AC;
color: #582A1D;
}
h1 {
font-family: 'Raleway', sans-serif;
text-align: center;
padding: 1em;
}
.quotes {
font-family: "droid serif", serif;
position: absolute;
margin-left: 10vw;
}
.quoteMark {
font-size: 8rem;
margin-left: 12vw;
@extend .quotes;
}
.credit {
@extend .quotes;
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;
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 rgb(139, 63, 45);
}
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: rgb(56, 26, 18);
}
button:active {
box-shadow: 1px 1px 2px #AC7638 inset;
background-color: #582A1D;
}