-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathejercicio1.css
More file actions
63 lines (63 loc) · 1007 Bytes
/
ejercicio1.css
File metadata and controls
63 lines (63 loc) · 1007 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
body {
background-color: lightgray;
}
h1 {
text-align: center;
font-size: x-large;
}
p {
border: 1px solid black;
font-size: medium;
position: absolute;
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
p#m1 {
background-color: #dbc9a6;
z-index: 10;
margin: 20px;
padding: 15px;
position: relative;
text-align: center;
font-size: medium;
}
p#m2 {
background-color: #91ff91;
width: 400px;
height: 150px;
left: 400px;
top: 220px;
z-index: 10;
text-align: center;
}
p#m3 {
background-color: #ffffb3;
width: 400px;
height: 150px;
left: 200px;
top: 100px;
text-align: left;
}
p#m4 {
background-color: #c6ffff;
width: 400px;
height: 150px;
right: 200px;
top: 100px;
text-align: right;
}
p#m5 {
background-color: #ffe5ff;
width: 400px;
height: 150px;
left: 200px;
bottom: 20px;
text-align: left;
}
p#m6 {
background-color: #ffb4b4;
width: 400px;
height: 150px;
right: 200px;
bottom: 20px;
text-align: right;
}