blob: ac02d1319be1329913306ef88b4905b7d7203e2a (
plain)
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
|
$asana: #067ab4
$copyleft: #ccc
$enlace: #2dde98
$fondo: #2d3743
$red: #fc636b
$submit: #3895ea
$submit-text: #fff
$text: #fff
$textbox-focus: #221f1f
$textbox: #a4a4a4
$URLbox: #f5f5f1
body
background: $fondo
color: $text
.contenedor
margin: auto
width: 70%
max-width: 700px
background: $asana
display: flex
flex-direction: column
flex-wrap: wrap
align-items: center
.libreyt
padding-bottom: 60px
a.enlace
color: $copyleft
text-decoration: none
&:hover
color: $enlace
header
display: flex
width: 90%
padding: 20px 0px
justify-content: center
img
align-items: center
width: 100%
vertical-align: top
section
width: 100%
h2
text-align: center
.formulario
display: flex
flex-wrap: wrap
justify-content: center
input[type="text"]
background: $URLbox
border: 2px solid
margin-bottom: 15px
width: 80%
border-radius: 5px
padding: 15px 20px
font-size: 15px
color: $textbox
&:focus
border: 2px solid $submit
color: $textbox-focus
.boton
margin: auto
background: $submit
color: $submit-text
border: none
border-radius: 3px
padding: 15px 40px
cursor: pointer
footer
p.copyleft
font-size: 12px
text-align: center
|