forked from WDI-SEA/sei-tic-tac-toe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
99 lines (84 loc) · 1.71 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
* {
box-sizing: border-box; margin: 0; padding: 0;
}
body {
background-color: aqua;
text-align: center;
font-family: 'Work Sans', sans-serif;
font-weight: 900;
}
h1 {
font-size: 4rem
}
.board {
display: grid;
grid-template-columns: 15vh 15vh 15vh;
grid-template-rows: 15vh 15vh 15vh;
justify-content: center;
padding-bottom: 5rem;
}
.grid-item {
display:flex;
background-color: rgba(255, 255, 255, 0.8);
border: 9px solid rgba(0, 0, 0, 0.8);
justify-content: center;
flex-direction: column;
font-size: 8vw;
text-align: center;
}
.buttons {
margin: 1rem 0rem 0rem 0rem;
padding: 3vh 0 0 0;
}
.computerbutton {
margin: 0rem 0rem 0rem 0rem;
padding: 3vh;
}
.computer {
font-family: 'Work Sans', sans-serif;
border-radius: 5%;
box-shadow: 0 2px 4px darkslategray;
padding: 3px 5px 3px 5px;
border: transparent;
cursor: pointer;
transition: all 0.2s ease;
}
.result {
margin: 1rem 0rem 1rem 0rem;
font-size: 4vw;
}
.reset {
font-family: 'Work Sans', sans-serif;
border-radius: 5%;
box-shadow: 0 2px 4px darkslategray;
padding: 3px 5px 3px 5px;
border: transparent;
cursor: pointer;
transition: all 0.2s ease;
}
.new {
font-family: 'Work Sans', sans-serif;
border-radius: 5%;
box-shadow: 0 2px 4px darkslategray;
padding: 3px 5px 3px 5px;
border: transparent;
cursor: pointer;
transition: all 0.2s ease;
}
.game {
margin-bottom: 0px;
}
.rule {
display: flex;
font-size: 4vh;
}
.rulelist {
display: flex;
justify-content: center;
margin: 15px;
}
.score {
font-size: 2.8vh;
border-color: black;
border-style: dotted;
}