-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathejercicio6.css
More file actions
42 lines (38 loc) · 726 Bytes
/
ejercicio6.css
File metadata and controls
42 lines (38 loc) · 726 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
width: 100%;
height: 100%;
font-size: 65.5%;
}
.body {
width: 100%;
height: 100%;
background: bisque;
}
.inicio {
border: 2px solid gray;
border-radius: 50px;
padding: .5rem 1rem;
background: white;
color: gray;
margin: 10px 0;
text-decoration: none;
font-size: 1.3rem;
font-weight: 500;
letter-spacing: 1.5px;
transition:
border ease 300ms,
box-shadow ease 300ms,
background ease 300ms,
color ease 300ms;
}
.inicio:hover {
border: 2px solid white;
box-shadow: 1px 1px 5px rgb(0, 0, 0, .7);
background: gray;
color: white;
}