-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
108 lines (87 loc) · 1.52 KB
/
style.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
/*
HOJA DE ESTILOS CSS PARA EL PUZZLE DE MEMORIA
*/
body {
background-color: darkkhaki;
}
h1 {
font-family: "Impact";
font-weight: bold;
letter-spacing: 4px;
font-size: 50px;
text-align: center;
color: white;
background-color: cadetblue;
padding: 24px;
margin-top: 0;
}
h2, h3, h4 {
font-family: "Arial";
}
.bold {
font-weight: bold;
}
main {
text-align: center;
}
footer {
text-align: center;
}
footer address {
padding-bottom: 8px;
}
#juego {
padding: 32px 0;
grid-area: centro;
}
.carta5x6 {
width: calc(15% - 2%);
margin: 12px;
font-size: 20px;
text-align: center;
background: burlywood;
}
.carta4x5 {
width: calc(18% - 2%);
margin: 12px;
font-size: 20px;
text-align: center;
background: burlywood;
}
.tablero {
background-color: cadetblue;
border: solid;
display: flex;
flex-wrap: wrap;
justify-content: space-around;
padding: 8px;
margin: 0 5% 20%;
}
.main-container {
display: grid;
grid-template-columns: 1fr 2fr 1fr;
grid-template-areas: "izquierda centro derecha";
}
.panel-izquierdo {
grid-area: izquierda;
}
.panel-derecho {
grid-area: derecha;
}
.conf-panel {
background-color: burlywood;
}
#parejas-resueltas, #intentos-restantes {
margin: 0 25%;
background-color: azure;
font-size: x-large;
}
#texto-bienvenida {
padding: 0 25%;
font-family: Verdana;
font-size: 16px;
}
#boton-comenzar {
padding: 8px;
font-size: 16px;
}