-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcss.css
More file actions
118 lines (103 loc) · 1.81 KB
/
css.css
File metadata and controls
118 lines (103 loc) · 1.81 KB
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
#outerwrapper {
width: 370px;
height: 410px;
background-color: #cbccbd;
border-radius: 20px;
margin: 10% auto;
position: relative;
box-shadow: 1px 10px 15px 3px #888888;
}
#innerwrapper {
overflow: hidden;
width: 325px;
height: 320px;
/* background-color:#21705f; */
background: linear-gradient(to right, #21705f, #7b9e8b, #21705f);
position: relative;
margin: auto;
top: 0px;
}
#interaction {
position: relative;
top: 70px;
}
#displaytext {
color: white;
font-size: 30px;
margin: auto;
width: 70%;
}
.buttonwrapper {
width: 90%;
margin: auto;
}
#reset {
visibility: hidden;
padding: 5px 10px 5px 5px;
float: right;
}
#winscontainer {
visibility: hidden;
}
.wins {
float: left;
margin-left: 30px;
width: 8%;
}
button {
font-size: 18px;
margin: 3px;
outline: none;
border: none;
background-color: transparent;
}
.glyphicon {
vertical-align: -9%;
}
button:hover {
border: 2px dotted black;
margin: 1px;
}
.gamegrid {
width: 33.3333333333%;
height: 33.3%;
border: 1px solid white;
float: left;
}
.gamecontent {
font-size: 50px;
position: relative;
float: left;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
#result {
color: white;
font-size: 30px;
text-align: center;
position: absolute;
width: 100%;
top: 43%;
display: none;
}
#player1turn {
position: absolute;
padding: 7px 12px;
border-radius: 10px;
font-size: 20px;
float: left;
left: 5%;
z-index: -1;
background-color: #87e7f2;
}
#player2turn {
position: absolute;
padding: 7px 12px;
border-radius: 10px;
font-size: 20px;
float: right;
right: 5%;
z-index: -1;
background-color: #abf4bb;
}