-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
59 lines (59 loc) · 1.15 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
*{
margin:0
}
#main{
height: calc(100vh - 2px);
border: 1px solid black;
background-image: linear-gradient(to right,red,blue);
text-align: center;
user-select: none;
display: grid;
place-items: center;
}
#game_area{
border: 1px solid black;
background-color: cornsilk;
display: grid;
grid-template-columns: repeat(3,134px);
grid-template-rows: repeat(3,114px);
width: 400px;
height: 340px;
margin: auto;
cursor: pointer;
margin-top: 15px;
}
.box{
border: 1px solid black;
font-size: 90px;
}
#text_area{
font-size: 30px;
font-family: 'Courier New', Courier, monospace;
font-weight: bolder;
width: 400px;
margin: auto;
}
#button_area{
width: 100px;
margin: auto;
}
#button{
visibility: hidden;
font-family: 'Courier New', Courier, monospace;
width: 100px;
height: 40px ;
border-radius: 4px;
cursor: pointer;
font-weight: bold;
font-style: italic;
}
#button:hover{
background-color: black;
color: white
}
#ttt{
font-size: 50px;
font-family: 'Courier New', Courier, monospace;
font-weight: bolder;
margin-top: 12px;
}