-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtictactoe.css
131 lines (124 loc) · 1.76 KB
/
tictactoe.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
129
130
131
body {
max-width: 355px;
margin: auto;
background-color: sienna;
font-family: 'Bangers', cursive;
letter-spacing: 3px !important;
color: #DFF0D8;
padding: 0px !important;
}
#board{
height: 345px;
padding-top: 25px;
width: 100%;
}
/**
* broke the alphabetical order due to
* oveloading border
*/
.col-xs-4 {
padding: 0px !important;
height: 100%;
border: 2px solid #DFF0D8;
}
.box1 {
border-top : none;
border-left: none;
}
.box2 {
border-top : none;
}
.box3 {
border-top : none;
border-right: none;
}
.box4 {
border-left: none;
}
.box6 {
border-right: none;
}
.box7 {
border-left: none;
border-bottom: none;
}
.box8 {
border-bottom: none;
}
.box9 {
border-right: none;
border-bottom: none;
}
h1 {
text-align: center;
}
img {
height: 100%;
width: 100%;
}
.row {
height: 115px;
}
#result {
margin-top: 25px;
}
#result p {
font-size: 21px;
text-align: center;
}
#result p span {
font-size: 23px;
}
/**
* Modal Design
*/
.btn {
color: white;
background: transparent;
padding: 9px 45px;
border: 2.51px solid #fff;
border-radius: 25px;
font-size: 21px;
letter-spacing: 3px !important;
}
.btn:hover {
color: sienna;
text-decoration: none;
background: white;
transition: .3s ease-out;
-webkit-transition: .3s ease-out;
-moz-transition: .3s ease-out;
}
.btn:focus {
outline: transparent;
outline: transparent;
outline-offset: 0px;
}
.messi {
float: left;
}
.modal-footer, .modal-header {
border: none;
}
.modal-content {
background-color: sienna;
}
.modal-header h4 {
font-size: 23px;
letter-spacing: 3px !important;
text-align: center;
color: white;
}
.ronaldo {
float: right;
}
/*
For Responsive Design
*/
@media (max-width:400px) {
.btn {
font-size: 17px;
letter-spacing: 3px !important;
padding: 9px 25px;
}
}