-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
117 lines (97 loc) · 1.89 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
109
110
111
112
113
114
115
116
117
/*----------------------------------------------------Index-----------------------------------------------------------*/
body {
background-color: #ABF8FF;
}
h1 {
font-size: 50px;
padding: 10px;
margin: 50px;
font-family: 'Gochi Hand', cursive;
}
p {
font-size: 22px;
padding: 10px;
margin-bottom: 50px;
font-family: 'Saira Semi Condensed', sans-serif;
}
.opcoes img {
width: 200px;
border: 2px solid black;
}
.opcoes img:hover {
opacity: 0.8;
}
.opcoes {
margin: 20px;
border: 2px solid black;
background-color: #C2F9FE;
}
.opcoes-lista li{
padding: 50px;
}
/*----------------------------------------------------Jogos-----------------------------------------------------------*/
.main-jogo {
background-color: #AFF5FF;
}
.tabuleiro {
width: 710px;
height: 720px;
border-radius: 10px;
}
.modo {
position: absolute;
transition: all 0.5s;
}
#tela-inicio {
opacity: 0.5;
z-index: 1; /*ordem de empilhamento*/
}
#tela-inicio img, #tela-final img {
width: 710px;
height: 720px;
}
#tela-final {
opacity: 0;
z-index: -1; /*ordem de empilhamento*/
}
#container {
position: relative;
margin: 50px auto;
background-color: white;
border: outset;
box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}
.peca {
width: 220px;
height: 220px;
margin: 5px 10px 5px 10px;
position: absolute;
transition: left 0.5s, top 0.5s;
}
.peca img {
width: 100%;
}
.peca:hover {
border: inset;
border-radius: 10px;
}
.coluna-imagem img{
width: 210px;
border: outset;
box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
margin-top: 10px;
}
.botao a {
text-decoration: none;
color: black;
background-color: white;
border: outset white;
box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
padding: 10px;
border-radius: 10px;
font-size: 20px;
}
.botao:hover {
background-color: #ABF8FF;
opacity: 0.8;
}