-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathejercicio4.css
More file actions
50 lines (46 loc) · 845 Bytes
/
ejercicio4.css
File metadata and controls
50 lines (46 loc) · 845 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
h1{
background-color: gray;
margin: 0;
}
h2{
background-color: lightgrey;
text-align: right;
border-bottom: 1px dashed gray;
margin: 0;
}
h3{
margin: 0;
background-color: rgb(218, 218, 218);
padding: 5px;
margin-bottom: 5px;
text-transform: uppercase;
text-align: center;
/* Tamaño de la fuente */
font-size: 1em;
}
.bloque{
margin-top: 10px;
margin-left: 5px;
padding: 10px;
position: relative;
border-left: 2px dashed gray;
border-right: 2px dashed gray;
float: left;
}
.bloque div{
border: 2px solid black;
width: 160px;
margin-bottom: 10px;
}
h4{
margin: 0;
background-color: rgb(146, 146, 146);
text-align: right;
color: white;
}
p{
margin-left: 4px;
overflow-x: auto;
margin-bottom: 2px;
margin-top: 2px;
}