Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
robertopucp
GitHub Repository: robertopucp/1eco35_2022_2
Path: blob/main/Lab11/ej4.css
2714 views
1
html, body {
2
height: 100%;
3
}
4
5
#cuerpoApp {
6
background-color: whitesmoke;
7
}
8
9
.headerSide {
10
height: 5%;
11
}
12
13
.optionSide {
14
height: 10%;
15
}
16
17
.infoSide {
18
height: 60%;
19
}
20
21
.indicadorSide {
22
background-color: orange;
23
height: 20%;
24
}
25
26
.btnLang {
27
font-size: 20px;
28
font-weight: bold;
29
color: #5DC1B9;
30
background-color: transparent;
31
border: transparent;
32
}
33
34
.btnLang:hover {
35
background-color: grey;
36
border-radius: 5px;
37
}
38
39
.btnLang:active {
40
color: white;
41
}
42
43
.btnOpciones {
44
color: #5DC1B9;
45
font-size: 15px;
46
font-weight: bold;
47
background-color: transparent;
48
border: transparent;
49
}
50
51
.btnOpciones:active{
52
color: white;
53
}
54
55
.btnCamara {
56
color: white;
57
font-size: 20px;
58
font-weight: bold;
59
background-color: transparent;
60
border: transparent;
61
border-left: solid 5px #5DC1B9;
62
}
63
64
.btnCamara:active {
65
color: #5DC1B9;
66
border-left: solid 5px white;
67
}
68
69
.camaraSeccion {
70
border-radius: 8px;
71
border: solid 2px rgba(255,255,255,0.6);
72
}
73