-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
95 lines (91 loc) · 1.83 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
*{
margin:0;
padding : 0;
}
html{
font-family: monospace;
}
.text-center{
text-align: center;
}
.gameBoard {
width: 600px;
margin : 3rem 0;
display: grid;
grid-template-columns: repeat(3 , 1fr);
grid-auto-rows: 100px;
}
.one , .two , .three , .four , .five , .six {
border-bottom: 4px solid black;
}
.one , .two , .four , .five , .seven , .eight{
border-right: 4px solid black;
}
.three , .six {
border-bottom : 4px solid black ;
}
.gameMenu {
margin-top:50px;
position: relative;
}
.gameMenu h3{
line-height: 24px;
}
.gameMenu button {
margin-top : 1.5rem;
color : white;
background-color: #04AA6D;
border : 3px solid #04AA6D;
border-radius: 6px;
padding : 0.5rem 0.75rem;
cursor: pointer;
}
.gameMenu button:hover {
margin-top : 1.5rem;
color : #04AA6D ;
background-color: white;
border : 3px solid #04AA6D;
border-radius: 6px;
padding : 0.5rem 0.75rem;
cursor: pointer;
}
.area{
display: flex;
justify-content: center;
align-items: center;
}
.area span {
font-size: 50px;
}
.info {
position : absolute ;
top : -200px;
left :450px;
margin : 0 auto;
width:150px; background-color:#fff;
border :3px solid grey;
border-left:6px solid #04aa6d ;
border-radius : 5px;
padding : 0.25rem 0.75rem;
animation-name: info;
animation-duration: .8s;
animation-timing-function: cubic-bezier(0.075, 0.82, 0.3, 1);
animation-iteration-count: 2;
animation-direction: alternate ;
}
@keyframes info {
0%{ top: -200px;
}
100%{
top : 0px;
}
}
.container{
max-width: 1200px;
margin : 0 auto;
}
footer {
position : fixed;
bottom : 10px ;
right : 10px;
}