styles.scss
1.06 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
@import "scss/styles-bootstrap.scss";
@import "scss/typography.scss";
@import "scss/height-width.scss";
@import "scss/animations.scss";
@import "scss/icons.scss";
@import "scss/scroll.scss";
@import "node_modules/bootstrap/scss/_variables.scss";
@font-face {
font-family: "Gotham";
font-style: normal;
font-weight: normal;
src: url("assets/fonts/gotham-medium.woff") format("woff");
}
html,
body {
min-height: 100vh;
max-height: 100vh;
height: 100vh;
font-family: "Gotham";
overflow: hidden;
user-select: none;
}
.btn-effect {
transition: all 0.3s;
&:hover {
cursor: pointer;
opacity: 0.7;
}
&:active {
transform: scale(1.02);
}
}
.cursor-pointer {
cursor: pointer;
}
p {
margin: 0 !important;
}
.img-in-top {
position: absolute;
top: -35px;
left: 50%;
height: 70px;
-webkit-transform: translateX(-50%);
transform: translateX(-50%);
}
.rotate-45 {
transform: rotate(45deg);
}
.rotate-90 {
transform: rotate(90deg);
}
.rotate-90-neg {
transform: rotate(-90deg);
}
.rotate-180-neg {
transform: rotate(-180deg);
}