-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
115 lines (103 loc) · 2.25 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
body{
margin: 0px;
background-color: rgb(245, 237, 245);
}
.heading{
color:navy !important;
font-family: cursive;
}
.playground{
display:flex;
flex-direction: column;
background-color: rgb(240, 227, 240);
height: 630px;
}
.control-board{
background-color: navy;
justify-content: space-between;
align-items: flex-end;
height: 100px;
}
#next-player, #move-count, #reset, #replay{
background-color:rgb(240, 227, 240);;
width: auto;
font-family: cursive;
font-weight: 200;
font-size: large;
border: 3px solid red;
border-radius: 15px;
margin-top:20px;
}
#reset:active, #replay:active{
background-color: lightgray;
}
#field{
width: 40% ;
margin: auto;
margin-top: 70px;
padding:2% 5% 2% 5%;
border-radius: 5px;
background-color: rgb(240, 227, 240);
box-shadow: 0px 15px 25px rgb(135, 135, 156);
transform: rotate3d(100, 100, 100, -15deg);
}
.box-row, .box-last-row{
text-align: center;
border-bottom: 6px solid navy;
}
.box-last-row{
border-bottom: none;
}
.box-wrapper, .right-box-wrapper{
display: inline-block;
width: 30%;
height: 100px;
border: none;
border-right: 6px solid navy;
vertical-align: middle;
}
.right-box-wrapper{
border: none;
}
.box{
width: 60px;
height: 70px;
border:none;
border-radius: 3px;
box-shadow: 0px 10px 10px rgb(212, 205, 212);
background-color:rgb(235, 219, 235);
font-size: 2.5em;
font-weight: bolder;
padding: 10px 0px 10px 0px;
color:#dc3545;
margin-top: 10px;
}
.box:hover{
transform: scale(1.15);
transition: transform 2s;
background-color: rgb(223, 200, 233);
}
.enabled{
background-color: rgb(235, 219, 235);
}
.disabled{
background-color: rgb(223, 200, 235);
}
#winner-display-board{
display:none;
background-color: navy;
font-family: cursive;
font-weight: bolder;
font-size: larger;
color: white;
margin: auto;
margin-top: 30px;
padding: 5px;
width: 35vw;
text-align: center;
border-radius: 5px;
position: absolute;
top: 650px;
left: 35vw;
z-index: 1;
}