-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcode.css
More file actions
51 lines (44 loc) · 739 Bytes
/
Copy pathcode.css
File metadata and controls
51 lines (44 loc) · 739 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
*,
::before,
::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
display: inline;
background-color: black;
}
.home {
position: relative;
z-index: -100;
display: block;
}
video {
object-fit: cover;
position: fixed;
width: 100%;
height: auto;
}
.botones{
flex-wrap: wrap;
text-align: center;
padding-top: 40%;
}
.boton{
background-color: #5f0000;
color: rgb(143, 143, 143);
width: 100px;
height: 50px;
border: #5f0000;
border-radius: 10px;
font-size: 20px;
}
.boton+.boton{
margin-left: 20%;
}
.boton:hover{
transform: scale(1.1);
transform: translateY(-2px);
box-shadow: 0 12px 16px #4b0000;
}