-
Notifications
You must be signed in to change notification settings - Fork 1
/
perfil.page.scss
133 lines (123 loc) · 3.44 KB
/
perfil.page.scss
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
// se configuran todos los elementos presentes en perfil.page.html
ion-header { // se definen las caracteristicas del header presennte en el html
--ion-background-color:#3d8af7;
background-color: #3d8af7;
}
ion-content { // se configura el color de la pagina
--ion-background-color:#3d8af7;
}
ion-toolbar {
--ion-background-color:#3d8af7;
background-color: #3d8af7;
}
ion-title{ // se configura el color de la toolbar
--ion-background-color:#3d8af7;
background-color: #3d8af7;
}
ion-col{ // se configura la posicion de la columna
position:absolute;
top :10%;
left: 12.5%;
}
ion-row{ // se configura la posicion de la fila
padding-top: 2%;
}
ion-button{ // se configuran las caracteristicas del boton de regresar
--background:#75a9f9;
--background-activated:#1c7aff;
color:#140b0a;
}
.espacio{ // se configura las caracteristicas del elemento
padding-top: 20%; // esta alejadp del margen de arriba un porcentaje
}
.item_nombre{ // se configura las caracteristicas del elemento
background-color:#75a9f9;
//top:10%;
--background: #75a9f9;
//position: absolute;
//right:12.5%;
border-radius: 10px ;
border: 10px solid #75a9f9;
width:75%;
//height: 7%;
padding-bottom:0%;
}
.item_apellido{ // se configura las caracteristicas del elemento
background-color:#75a9f9;
//top:20%;
--background: #75a9f9;
//position: absolute;
//right:12.5%;
border-radius: 10px ;
border: 10px solid #75a9f9;
width:75%;
//height: 5%;
padding-bottom:0%;
}
.item_correo{ // se configura las caracteristicas del elemento
//top: 30%;
--background: #75a9f9;
background-color:#75a9f9;
//position: absolute;
//right:12.5%;
border-radius: 10px ;
border: 10px solid #75a9f9;
width:75%;
//height: 5%;
padding-bottom:0%;
}
.item_sexo{ // se configura las caracteristicas del elemento
//top: 70%;
--background: #75a9f9;
background-color:#75a9f9;
//position: absolute;
//@at-root:12.5%;
border-radius: 10px ;
border: 10px solid #75a9f9;
width:75%;
//height: 5%;
padding-bottom:0%;
}
.Volver { // se configura las caracteristicas del elemento
--background:#3d8af7;
--background-activated:#75a9f9;
--color:#140b0a;
position: absolute;
top: 0%;
left: 0%; // se configura la posicion del objeto
width: 18%; // se configura la posicion del objeto
height: 7%;
--box-shadow:none;
}
.control_group{ // se configura las caracteristicas del elemento
padding-left: 3%;
padding-bottom:3%;
padding-top:3%;
background-color:#75a9f9;
//position: absolute;
//top: 60.2%;
//right:12.5%;
width:75%;
border-radius: 10px ;
}
select{ // se configura las caracteristicas del elemento
border-radius: 5px ;
background-color: #b8d5fd;
}
.Radio_sexo{ // se configura las caracteristicas del elemento
//top: 69.7%;
--background: #75a9f9;
background-color:#75a9f9;
//position: absolute;
//right:12.5%;
border-radius: 10px ; // se configura un poco redoneado
border: 10px solid #75a9f9;
width:75%;
//height: 5%;
}
.labels{ // se configura las caracteristicas del elemento
font-weight: 700; // el tamaño de la fuente de la letra se configura
}
.controls{ // se configura las caracteristicas del elemento
padding-top:3%
}