-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
109 lines (90 loc) · 1.88 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
106
107
108
*{
padding: 0px;
margin: 0px;
box-sizing: border-box;
}
.contenedor{
background-color: rgb(126, 210, 243);
height: 100vh;
display: flex;
flex-direction:column;
padding: 20px;
justify-content: center;
align-items: center;
background-image: url(https://p4.wallpaperbetter.com/wallpaper/345/128/999/cartoons-pc-download-hd-wallpaper-preview.jpg);
object-fit: cover;
}
.cuadro {
width: 600px;
height: 600px;
display: grid;
grid-template-columns: 1fr 1fr 1fr;
grid-template-rows: 1fr 1fr 1fr;
gap: 7px;
background-color: rgba(250, 128, 114, 0.192);
}
.cuadro div {
background-color:rgba(245, 245, 245, 0.26);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
font-size: 60px;
}
.cuadro :hover{
background-color: rgba(218, 218, 218, 1);
cursor: pointer;
}
button{
padding: 20px 10 px;
background-color: salmon;
color: azure;
outline: none;
border: 0px;
border-radius: 8px;
width: 200px;
margin-top: 20px;
font-weight: bold;
font-size: 20px;
letter-spacing: 1px;
}
button:hover{
cursor: pointer;
background-color: rgb(155, 37, 135);
}
#Jugador1 {
position:sticky ;
right: 950px;
bottom:300px;
border-radius: 8px;
border: none;
background-color:rgb(238, 117, 131);
box-shadow: rgba(218, 218, 218, 1);
font-family: Arial, Helvetica, sans-serif;
font-weight: bold;
font-size:20px;
color: #faecec;
padding: 20px 10px;
margin:8px 70px;
}
jugador1:hover{
background-color:rgba(238, 54, 133, 0.61);
cursor: pointer;
}
#Jugador2 {
position:sticky;
left: 950px;
border-radius: 8px;
border: none;
background-color:rgb(238, 117, 131);
font-family: Arial, Helvetica, sans-serif;
font-weight: bold;
font-size:20px;
color: #faecec;
padding: 20px 10px;
margin:8px 70px;
}
jugador2:hover{
background-color:rgba(238, 54, 133, 0.61);
cursor: pointer;
}