-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1.css
47 lines (43 loc) · 743 Bytes
/
1.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
*{
margin: 0px;
padding: 0px;
font-family: Verdana,Arial;
}
body{
background-image: url("imgs/bg.jpg");
background-attachment: fixed;
background-size: 100%;
}
.container{
display: flex;
justify-content: space-around;
}
.datos{
margin: 20px auto;
display: table;
border-collapse: separate;
border-spacing: 0px;
}
.datos>a{
text-decoration:none;
margin:10px;
}
.datos>a>div{
display: table-cell;
background-image: url("imgs/local.jpg");
margin: 20px;
width: 400px;
height: 200px;
border-radius: 10px;
vertical-align: middle;
}
.datos>a>div>div{
display: table-cell;
width: 400px;
height: 200px;
border-radius: 10px;
background-color: rgba(0,0,0,.4);
text-align: center;
vertical-align: middle;
color: white;
}