-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.scss
142 lines (133 loc) · 2.2 KB
/
styles.scss
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
$series-title: #7f8c8d;
$azul: #00214d;
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.fade {
opacity: 1;
&:hover {
opacity: 0.5;
}
transition: all 0.3s ease;
}
.menu {
display: flex;
background-color: #fffffe;
margin: 1% 2% 0 2%;
.logo {
display: flex;
font-size: 1.4em;
font-family: 'Ibarra Real Nova', serif;
color: $azul;
}
.items {
display: flex;
font-size: 1.4em;
white-space: nowrap;
a {
font-family: 'Public Sans', sans-serif;
color: $azul;
text-decoration: none;
font-weight: 100;
margin: 0 5% 0 5%;
&:hover {
background-color: $azul;
color: #FFFFFF;
}
}
}
@media only screen and (min-width: 468px) {
justify-content: center;
flex-wrap: wrap;
.logo {
justify-content: center;
width: 100%;
margin-top: 3%;
}
.items {
justify-content: center;
width: 100%;
margin-top: 2%;
}
}
@media only screen and (min-width: 992px) {
justify-content: space-between;
.logo {
justify-content: flex-start;
width: auto;
margin-top: 1%;
}
.items {
justify-content: flex-end;
width: auto;
margin-top: 1%;
}
}
}
a {
font-family: 'Public Sans', sans-serif;
color: $azul;
text-decoration: none;
font-weight: 300;
margin: 0% 1% 0% 1%;
&:hover {
background-color: $azul;
color: #FFFFFF;
}
}
.series-title {
display: flex;
justify-content: center;
align-items: center;
font-family: 'Ibarra Real Nova', serif;
font-size: 4em;
margin-top: 50%;
&:hover {
cursor: pointer;
}
}
.sub-title {
display: flex;
justify-content: center;
align-items: center;
font-family: 'Ibarra Real Nova', serif;
font-size: 4em;
}
.container {
display: flex;
justify-content: center;
align-items: center;
margin: 4% 0% 0% 0%;
& p {
margin: 4% 20% 2% 20%;
font-family: 'Ibarra Real Nova', serif;
font-size: 1em;
text-align: justify;
}
}
.row {
background-color: #FFFFFF;
color: $azul;
margin-bottom: 1%;
img {
width: auto;
max-height: 70vh;
}
}
.navigation {
display: flex;
justify-content: center;
align-items: center;
}
.footer {
position: fixed;
left: 0;
bottom: 0;
text-align: center;
width: 100%;
font-family: 'Ibarra Real Nova', serif;
font-size: 1em;
margin: 3% 0% 3% 0%;
}