-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
95 lines (88 loc) · 1.59 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
body{
margin: 0;
padding: 0;
background-color: black;
color: white;
height: 90vh;
width: 100vw;
}
header{
color: white;
text-align: center;
text-shadow: 3px 3px 10px #2cff00;
font-size: 4vh;
}
footer {
margin: 3vh;
text-align: center;
font-size: 1.5vmax;
}
li {
display: inline;
margin: 10px 5px;
padding: 20px;
margin: auto;
}
.choice{
display: block;
width: 10vw;
height: 7vh;
margin: auto;
text-align: center;
font-size: 2vh;
background: darkred;
color: beige;
text-shadow: 2px 1px 5px gold;
}
.board{
margin: auto;
}
table, td{
height: 16vh;
width: 24vw;
border: 10px solid white;
border-collapse: collapse;
text-align: center;
font-size: 3rem;
color: greenyellow;
}
@media screen and (max-width:800px) {
table, td{
height: 10vh;
width: 40vw;
border: 0.2em solid white;
border-collapse: collapse;
text-align: center;
font-size: 3rem;
}
}
@media screen and (min-width:800px) and (max-width:1100px) {
table, td{
height: 15vh;
width: 50vw;
border: 0.2em solid white;
border-collapse: collapse;
text-align: center;
font-size: 3rem;
}
}
.choice:hover{
color: wheat;
background: darkblue;
text-shadow: 2px 1px 5px orange;
}
table{
border: none;
}
#box1,#box2,#box3{
border-top: none;
}
#box1,#box4,#box7{
border-left: none;
}
#box3,#box6,#box9{
border-right: none;
}
#box7,#box8,#box9{
border-bottom: none;
}