-
Notifications
You must be signed in to change notification settings - Fork 0
/
template.sass
251 lines (197 loc) · 4.08 KB
/
template.sass
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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
$gradient: linear-gradient(141deg, rgba(#0fb8ad, 0.5) 0%, rgba(#1fc8db, 0.5) 51%, rgba(#2cb5e8, 0.5) 75%)
$gradient-hover: linear-gradient(-141deg, rgba(#0fb8ad, 0.6) 0%, rgba(#1fc8db, 0.6) 51%, rgba(#2cb5e8, 0.6) 75%)
$gradient-no-t: linear-gradient(141deg, rgba(#0fb8ad, 0.8) 0%, rgba(#1fc8db, 0.8) 51%, rgba(#2cb5e8, 0.8) 75%)
$gradient-no-t-hover: linear-gradient(-141deg, rgba(#0fb8ad, 0.8) 0%, rgba(#1fc8db, 0.8) 51%, rgba(#2cb5e8, 0.8) 75%)
*
margin: 0
padding: 0
box-sizing: border-box
font-family: 'Nixie One', cursive
font-weight: bold
html
font-size: 16px
body
min-height: 100vh
display: flex
justify-content: center
align-items: center
background-image: url(IMG/bg.jpg)
background-size: cover
h1,h2,h3,h4,h5,h6,label,legend,
p, input[type="submit"], a
color: white
font-size: 1.1em
outline: 0
h2
font-size: 1.3em
padding: .5em
background: rgba(0, 0, 0, 0.5)
// FORMINIT
input,
select,
textarea
border: 0
outline: 0
border-radius: .5em
padding: .2em
box-shadow: 0 0 0 15px transparent
transition: all ease 0.4s
input:hover,input:focus,
select:hover,select:focus,
textarea:hover,textarea:focus
box-shadow: 0 0 20px 2px rgb(15, 184, 173)
color: darken(rgb(15, 184, 173), 20%)
textarea
width: 100%
height: 150px
max-height: 150px
max-width: 100%
resize: none
a
display: table
padding: .3em
text-decoration: none
label, input[type="submit"]
display: table
margin-bottom: 1em
fieldset
border: 2px solid white
padding: 1em
position: relative
legend
font-size: 2em
input[type="submit"]
background: $gradient
padding: .5em
cursor: pointer
transition: all linear 0.2s
box-shadow: 0 0 0 1px transparent inset
color: #fff
input[type="submit"]:hover
box-shadow: 0 0 0 1px #fff inset
background: $gradient-hover
.volver-menu
padding: .5em
font-size: 15px
position: absolute
bottom: 5px
right: 5px
background: $gradient
transition: all linear 0.2s
border-radius: 10px
box-shadow: 0 0 0 1px transparent inset
.volver-menu:hover
box-shadow: 0 0 0 1px #fff inset
background: $gradient-hover
// FORMEND
.wrapper
min-width: 800px
background: $gradient
padding: 1em
border-radius: .5em
.menu-opciones
display: block
padding: 1em
transition: all ease 0.2s
text-align: center
font-size: 1.3rem
.menu-opciones:hover
background-color: rgba(#000, 0.3)
.opciones
padding: .5em;
transition: all ease 0.2s
line-height: 20px
.opciones:hover
background-color: rgba(#000, 0.3);
.adminPanel
margin: 15px 0
.mensajePopup
display: none
position: fixed
background: rgba(0, 0, 0, 0.5)
width: 100%
height: 100vh
top: 0
left: 0
justify-content: center
align-items: center
color: #fff
.mensajeText
padding: 1em
background: $gradient
position: relative
min-width: 600px
min-height: 400px
height: 500px
max-width: 800px
border-radius: .5em
.height-modified
min-height: 100vh
margin: 4em 0
.btnClose
position: absolute
display: block
z-index: 100
width: 50px
height: 50px
text-align: center
line-height: 30px
right: -20px
top: -20px
background: $gradient
border-radius: 50%
cursor: pointer
transition: all ease 0.4s
box-shadow: 0 0 0 1px #fff inset
display: flex
justify-content: center
align-items: center
background: $gradient-no-t
.btnClose:hover
background: $gradient-no-t-hover
transform: rotate(360deg)
.cta-ver
background: $gradient
transition: all linear 0.2s
border-radius: 10px
cursor: pointer
margin: 0 auto
box-shadow: 0 0 0 1px transparent inset
.cta-ver:hover
background: $gradient-no-t-hover
box-shadow: 0 0 0 1px #fff inset
.response > p
line-height: 30px
.mensajeText fieldset
width: 100%
height: 100%
.paginacion-container
display: flex
width: 100%
margin: 20px 0
.paginacion
background: $gradient
box-shadow: 0 0 0 1px #fff inset
width: 40px
height: 40px
line-height: 30px
text-align: center
.p-left
padding-left: 1em
.paginacion:not(:last-child)
margin-right: 15px
.paginacion:hover
background: $gradient-hover
table
margin-bottom: 35px
margin-left: auto
margin-right: auto
width: 100%
th
font-size: 1.3em
th, td
padding: .5em
text-align: center
color: #fff
.label-textarea
display: block