forked from DanielFerszt/PlazaVirtual
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
67 lines (58 loc) · 1022 Bytes
/
style.css
File metadata and controls
67 lines (58 loc) · 1022 Bytes
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
body {
font-family: helvetica, arial, sans-serif;
}
h1 {
color: #3a241d;
text-align: center;
}
#contenedor-izquierdo {
background-color: #eee;
width: 15%;
height: 100%;
left: 0px;
top: 0px;
position: absolute;
padding: 10px;
}
#contenedor-derecho {
background-color: #eee;
width: 15%;
height: 100%;
right: 0px;
top: 0px;
position: absolute;
padding: 10px;
}
.contenedor-componente {
position: relative;
height: 10.5%;
left: 20%;
}
.componente {
position: absolute;
max-width: 150%;
max-height: 150%;
z-index: 2;
}
.cielo {
height: 80%;
width: 60%;
background: #BDE6F1;
border-radius: 1rem;
position: absolute;
bottom: 0.5%;
left: 20%;
opacity: 0.5;
z-index: 1;
}
.suelo {
width: 60%;
height: 45%;
background: #C9E4C5;
position: absolute;
border-radius: 1rem 1rem 1rem 1rem;
bottom: 1%;
left: 20%;
opacity: 0.7;
z-index: -1;
}