-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
126 lines (103 loc) · 2.45 KB
/
style.css
File metadata and controls
126 lines (103 loc) · 2.45 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
h1 {
color: rgb(20, 73, 178); /*cambia el color de h1*/
text-align: center;
border: 5px solid rgb(117, 131, 183);
background-color:rgb(226, 176, 213); /*color en el borde del fondo del titulo*/
border-style: dashed solid;
font-style:oblique;
font-size: 52px;
}
marquee{
color:rgb(145, 57, 160);
}
h2{
color: rgb(20, 73, 178); /*cambia el color de h1*/
text-align: center;
border: 5px solid rgb(117, 131, 183);
background-color:rgb(226, 176, 213); /*color en el borde del fondo del titulo*/
opacity: 0.7;
border-style: dashed solid;
font-style:oblique;
font-size: 40px;
}
body {
font-family: helvetica, arial, sans-serif; /*cambia el tipo de lentra*/
background-color:rgb(243, 239, 239) /*color de la hoja*/
}
/* SE PONE # AL COMIENZO CUANDO SE REFIERE A UN ID */
#titulo2{
color: #f705c2;
border: 2px cornflowerblue;
}
#tablero-izquierdo{
width: 25%; /*ancho 25% de la pantalla y p/ cualquier tipo de pantalla se aplica*/
position: absolute;
height: 100%; /*altura*/
padding: 10px; /*espacio del lado interno*/
left: 0px; /*margen izquierdo*/
background-color:rgb(226, 176, 213);
opacity: 0.8
}
#tablero-derecho {
width: 25%; /*es el ancho, se usa % pq es relativo con el % de la pagina*/
position: absolute;
height: 100%;
padding: 10px;
right: 0px;
}
/*para seleccionar una clase hay que comenzar con el .*/
.contenedor {
position: relative;
height: 6%;
}
.contenedor2 {
position: relative;
height: 18%;
left: -10px;
}
.reducido {
height: 4%;
}
.componente {
position: absolute;
max-width: 100%;
max-height: 150%;
z-index: 3;
}
.producto {
position: absolute;
max-width: 200%;
max-height: 200%;
z-index: 2;
}
.layout {
height: 80%;
width: 45%;
border: 5px solid #847b91;
border-radius: 1rem;
position: absolute;
opacity: 0.5;
z-index: 2;
margin: auto;
left: 2px;
right: 0px;
}
.rotulo {
width: 35%;
height: 4%;
background: #f705c2;
position: absolute;
opacity: 0.7;
z-index: 1;
margin: auto;
left: 0px;
right: 0px;
border-style: dashed solid;
text-align: center;
color: #060606;
}
.titulo {
position: relative;
display: inline;
top: 0.5rem;
}