-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
128 lines (109 loc) · 2.28 KB
/
styles.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
118
119
120
121
122
123
124
125
126
127
128
* {
margin: 0;
padding: 0;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
body {
text-align: center;
min-height: 100vh;
padding-top: 50px;
font-family: 'Montserrat', sans-serif;
}
body .helper {
color: #242F40;
font-size: 3rem;
-webkit-transition: opacity 500ms ease, font-size 500ms ease 500ms;
transition: opacity 500ms ease, font-size 500ms ease 500ms;
}
body .helper.hidden {
opacity: 0;
font-size: 0;
}
body .container {
width: 80vh;
margin: 0 auto;
height: 80vh;
-webkit-transform: scale(0.7);
transform: scale(0.7);
-webkit-transition: -webkit-transform 500ms ease 500ms;
transition: -webkit-transform 500ms ease 500ms;
transition: transform 500ms ease 500ms;
transition: transform 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
}
body .container .grid {
height: 100%;
width: 100%;
display: -ms-grid;
display: grid;
-ms-grid-columns: (1fr)[3];
grid-template-columns: repeat(3, 1fr);
-ms-grid-rows: (1fr)[3];
grid-template-rows: repeat(3, 1fr);
}
body .container .grid .square {
width: 100%;
height: 100%;
border: 5px solid #AB87FF;
padding: 10px;
}
body .container .grid .one {
border-top: none;
border-left: none;
}
body .container .grid .two {
border-top: none;
}
body .container .grid .three {
border-top: none;
border-right: none;
}
body .container .grid .four {
border-left: none;
}
body .container .grid .six {
border-right: none;
}
body .container .grid .seven {
border-left: none;
border-bottom: none;
}
body .container .grid .eight {
border-bottom: none;
}
body .container .grid .nine {
border-right: none;
border-bottom: none;
}
svg {
height: 100%;
width: 100%;
}
.dialog {
position: absolute;
width: 100%;
height: 20%;
background-color: white;
top: 50%;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
line-height: calc(0.2 * 80vh - 10px);
font-size: 3rem;
opacity: 0;
-webkit-transition: opacity 500ms ease-in-out 1250ms;
transition: opacity 500ms ease-in-out 1250ms;
z-index: -100;
}
.dialog.X {
border: 5px solid #D72638;
color: #D72638;
}
.dialog.O {
border: 5px solid #242F40;
color: #242F40;
}
.dialog.Cat {
border: 5px solid #AB87FF;
color: #AB87FF;
}
/*# sourceMappingURL=styles.css.map */