-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpractica1.css
More file actions
71 lines (61 loc) · 1.33 KB
/
practica1.css
File metadata and controls
71 lines (61 loc) · 1.33 KB
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
*{
background-color: azure;
}
.titulo{
color: rgb(5, 159, 159);
font-size: 50px;
text-align: center;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
#fondo{
background-color: rgba(245, 245, 220, 0.455);
}
.caja{
width: 300px;
height: 300px;
background-color: cadetblue;
opacity: 0.5;
border: 10px solid;
border-radius: 10px 20px 30px 40px; /* Hace redondas las esquinas de una caja*/
box-shadow: 5px 5px lightgray;
padding: 10px;
}
.subtitulo{
padding-top: 15px;
color: darkslateblue;
font-size: 25px;
text-align: center;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.subtitulo:hover{
color: cadetblue;
padding-top: 15px;
font-size: 25px;
text-align: center;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.imagen{
height: 430px;
padding-left: 13px;
position: relative;
}
.contenido{
padding-top: 15px;
padding-left: 13px;
font-size: 18px;
text-align: justify;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
letter-spacing: .4px;
line-height: 20px;
overflow: hidden;
}
input{
background-color: darkgrey;
}
a:visited{
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
color: chartreuse;
}
a:active{
color:crimson
}