-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinvitacion-style.css
More file actions
165 lines (148 loc) · 3.88 KB
/
invitacion-style.css
File metadata and controls
165 lines (148 loc) · 3.88 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
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
html {
height: 100%;
width: auto;
}
body {
margin: 0;
background: rgba(250, 250, 135, 1);
background: -moz-linear-gradient(-45deg, rgba(250, 250, 135, 1) 0%, rgba(194, 0, 91, 1) 100%);
background: -webkit--gradient(left top, right bottom, color-stop(0%, rgba(250, 250, 135, 1)), color-stop(100%, rgba(194, 0, 91, 1)));
background: -webkit-linear-gradient(-45deg, rgba(250, 250, 135, 1) 0%, rgba(194, 0, 91, 1) 100%);
background: -o-linear-gradient(-45deg, rgba(250, 250, 135, 1) 0%, rgba(194, 0, 91, 1) 100%);
background: -ms-linear-gradient(-45deg, rgba(250, 250, 135, 1) 0%, rgba(194, 0, 91, 1) 100%);
background: linear-gradient(135deg, rgba(250, 250, 135, 1) 0%, rgba(194, 0, 91, 1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fafa87', endColorstr='#c2005b', GradientType=1);
font-family: 'Encode Sans Expanded', sans-serif;
display: flex;
flex-direction: column;
background-repeat: no-repeat;
background-attachment: fixed;
}
h1 {
font-size: 50pt;
align-self: center;
}
form {
align-self: center;
width: 90%;
display: flex;
justify-content: space-around;
padding: 20px;
}
.name, .age, .estado-civil, .selector {
padding: 10px;
display: flex;
flex-direction: column;
}
.name-heading, .age-heading, .estado-heading, .nacionalidad-heading {
align-self: center
}
input[type=text], input[type=number] {
width: 100%;
padding: 6px;
margin: 8px 0;
box-sizing: border-box;
background-color: rgba(250, 250, 135, 1);
border: 1px #c20868 solid;
font-family: 'Encode Sans Expanded', sans-serif;
}
.estado-checkbox {
display: flex;
flex-direction: column;
}
.selector select {
font-family: 'Encode Sans Expanded', sans-serif;
width: 200px;
background-color: rgba(250, 250, 135, 1);
padding: 6px;
margin: 8px 0;
border: 1px #c20868 solid;
box-sizing: border-box;
background-color: rgba(250, 250, 135, 1);
}
.boton {
margin-top: 20px;
}
button {
background-color: rgba(250, 250, 135, 1);
font-family: 'Encode Sans Expanded', sans-serif;
margin: 20px;
padding: 20px;
border-radius: 45px 45px 45px 45px;
-moz-border-radius: 45px 45px 45px 45px;
-webkit-border-radius: 45px 45px 45px 45px;
border: 0px solid #000000;
}
button:hover {
background-color: rgba(200, 211, 114, 1);
}
button:active {
background-color: rgba(200, 211, 114, 1);
box-shadow: 0 5px rgba(194, 0, 91, 1);
transform: translateY(4px);
}
.error {
width: 200px;
color: #c2080b;
border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border: 0px solid #000000;
padding: 5px;
text-align: center;
}
.ficha-de-invitade {
border: 4px #c20868 solid;
width: 40%;
padding: 10px 20px 10px 10px;
border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
font-weight: bold;
margin: 30px;
}
#close-button {
float: right;
z-index: 1;
margin-top: -105px;
margin-right: -18px;
color: #c20868;
cursor: pointer;
}
@media only screen and (max-width: 500px) {
h1 {
margin: 20px 0;
font-size: 20pt;
text-align: center;
}
form {
display: flex;
flex-direction: column;
justify-content: center;
align-content: center;
}
.name, .age, .estado-civil, .selector {
margin: 0 5%;
display: flex;
}
.estado-checkbox, .selector select, .boton {
margin: 10px 15%;
}
.error {
text-align: center;
width: 90%;
}
.ficha-de-invitade {
width: 80%;
border: 4px rgba(200, 211, 114, 1) solid;
margin: 30px auto;
}
#close-button {
float: right;
z-index: 1;
margin-top: -105px;
margin-right: -18px;
color: rgba(200, 211, 114, 1);
cursor: pointer;
}
}