styles.scss
1.61 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
@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 {
max-height: 100vh;
height: 100%;
font-family: "Gotham";
overflow: hidden;
user-select: none;
}
body.media-pantalla {
height: calc(50%) !important;
position: absolute;
bottom: 0;
width: 100%;
background-color: #3d3d3d;
}
.btn-effect {
transition: all 0.3s !important;
&:hover {
cursor: pointer !important;
opacity: 0.7 !important;
}
&:active {
transform: scale(1.02) !important;
}
}
.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%);
}
.right-0 {
right: 0;
}
.top-0 {
top: 0;
}
.left-0 {
left: 0;
}
.rotate-45 {
transform: rotate(45deg);
}
.rotate-90 {
transform: rotate(90deg);
}
.rotate-90-neg {
transform: rotate(-90deg);
}
.rotate-180-neg {
transform: rotate(-180deg);
}
.disabled {
background-color: hsla(0, 0%, 100%, 0.4) !important;
}
.modal-content.media-pantalla {
margin-top: auto !important;
margin-bottom: 50px !important;
}
.modal-content {
background: transparent !important;
}
.z-index {
z-index: 1000;
}
.flip {
-webkit-transform: scaleX(-1);
transform: scaleX(-1);
}