-
Notifications
You must be signed in to change notification settings - Fork 1
/
play.css
62 lines (62 loc) · 920 Bytes
/
play.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
body {
background: #ccc;
font-size: 18;
}
.contenedor {
width: 780px;
min-height: 50px;
background: white;
margin: 0 auto;
}
.cabecera {
background: grey;
width: 780px;
height: 50px;
}
.menu {
width: 100%;
height: 40px;
padding: 0;
margin: 0;
list-style: none;
}
.menu li {
display: inline-block;
}
.menu li a {
padding: 10px 10px;
display: inline-block;
color: white;
}
.menu li a:hover {
background-color: #3adf00;
}
.slider {
margin: 0 auto;
width: 780px;
height: 370px;
background: white;
}
.slider h2 {
margin-left: 320px;
}
.slider img {
margin-left: 260px;
}
.slider a {
margin-left: 350px;
color: #3adf00;
font-size: 16;
}
.footer {
margin: 0 auto;
width: 780px;
background: black;
height: 50px;
margin-bottom: 0px
}
.footer p {
margin-top: auto;
font-size: 14px;
color: #ccc
}