-
Notifications
You must be signed in to change notification settings - Fork 3
/
style.css
153 lines (119 loc) · 1.98 KB
/
style.css
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
tr {
vertical-align: top;
}
button {
height: 32px;
}
h1 {
margin: 1em 0;
text-align: center;
}
#container {
margin: 0 auto;
}
#container input {
height: 2.5em;
visibility: hidden;
}
#container label {
background: #f9f9f9;
/* Fondo de las pestañas */
border-radius: .25em .25em 0 0;
color: #888;
/* Color del texto de las pestañas */
cursor: pointer;
display: block;
float: left;
font-size: 1em;
/* Tamaño del texto de las pestañas */
height: 2.5em;
line-height: 2.5em;
margin-right: .25em;
padding: 0 1.5em;
text-align: center;
}
#container input:hover+label {
color: #000000;
/* Color del texto de las pestañas al pasar el cursor por encima */
}
#container input:checked+label {
background: #e1e1e1;
/* Fondo de las pestañas al presionar */
color: #444;
/* Color de las pestañas al presionar */
position: relative;
z-index: 6;
font-weight: bold;
/*
-webkit-transition: .1s;
-moz-transition: .1s;
-o-transition: .1s;
-ms-transition: .1s;
*/
}
#content {
background: #e1e1e1;
/* Fondo del contenido */
border-radius: 0 .25em .25em .25em;
min-height: 13em;
/* Alto del contenido */
position: relative;
z-index: 5;
}
#content div {
opacity: 0;
padding: 1.5em;
position: absolute;
z-index: -100;
/*
transition: all linear 0.1s;
*/
}
#container input#tab-1:checked~#content #content-1,
#container input#tab-2:checked~#content #content-2,
#container input#tab-3:checked~#content #content-3 {
opacity: 1;
z-index: 100;
}
input.visible {
visibility: visible !important;
}
.active {
background-color: rgb(192, 192, 255);
}
#code {
width: 50%;
top: 40px;
position: absolute;
bottom: 0px;
left: 0;
}
.toolbar {
width: 100%;
height: 40px;
}
.toolbar span {
position: absolute;
}
#output {
position: absolute;
top: 40px;
left: 50%;
width: 50%;
}
#outputimg {
position: absolute;
width: 100%;
}
canvas {
position: absolute;
width: 100%;
}
#buttonDownload {
right: 0px;
position: absolute;
top: 0px;
}
body {
margin: 0px;
}