forked from miguelsimon/ejercicios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
65 lines (53 loc) · 790 Bytes
/
styles.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
body{
font-family: Arial, sans-serif;
text-align: center;
}
.header div{
display: inline-block;
}
.header{
border-bottom: 1px solid black;
}
.logo h1{
font-size: 50px;
font-weight: bold;
}
.logo h1 a{
text-decoration: none;
color: #FF1818;
}
.logo h1 a:hover{
opacity: 0.5;
}
.menu li{
font-size: 42px;
display: inline-block;
}
.menu a:hover{
opacity: 0.5;
}
.menu li a{
color: black;
text-decoration: none;
padding: 0px 40px;
}
h2{
font-size: 42px;
font-weight: bold;
}
h3{
font-size: 36px;
font-weight: normal;
}
.imagenes p{
color: #093FFF;
font-size: 30px;
}
.imagenes img{
transition: all 0.2s ease-in-out;
width: 600px;
}
.imagenes img:hover{
box-shadow: 0px 24px 44px rgba(0, 0, 0, 0.25);
transform: translateY(-20px);
}