-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathYigit_Usta.css
149 lines (127 loc) · 2.13 KB
/
Yigit_Usta.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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
body, html, div, table, td{
margin: 0;
padding: 0;
font-family: 'Baloo Thambi', cursive;
color: black;
-webkit-touch-callout: none; /* iOS Safari */
-webkit-user-select: none; /* Chrome/Safari/Opera */
-khtml-user-select: none; /* Konqueror */
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* Internet Explorer/Edge */
user-select: none; /*to not to select texts*/
cursor: default;
}
#main, #overlay{
top:0;
left:0;
bottom:0;
right:0;
height: 100%;
width: 100%;
}
#overlay{
position: fixed;
background-color: rgba(0,0,0, 0.8);
z-index: 1;
}
#startscreen{
position: relative;
margin: 200px auto;
width: 400px;
height: 150px;
border-radius: 30px;
background-color: rgb(100,100,100);
border: 3px solid black;
text-align: center;
font-size: 32px;
line-height: 100%;
padding: 40px 20px;
}
#startscreen span{
color: blue;
padding-left: 10px;
}
#start {
margin: 50px auto;
width: 200px;
height: 50px;
background-color: #D4D600;
border-radius: 20px;
border: 3px solid black;
line-height: 50px;
cursor: pointer;
}
#start:hover{
background-color: #898B00;
}
#main{
position: absolute;
background-color: #DDD;
}
#game{
margin: 0 auto;
table-layout: fixed;
}
#game td{
padding: 5px 30px;
text-align: center;
font-size: 18px;
}
#board{
margin: 0 auto;
border-spacing: 0px;
border-style: inset;
table-layout: fixed;
}
#board td{
padding: 0;
width: 30px;
max-width: 30px;
min-width: 30px;
height: 30px;
max-height: 30px;
min-height: 30px;
border-style: outset;
}
#board td div{
line-height: 30px;
}
.mark div{
top: 10px;
left: 10px;
width: 80%;
height: 80%;
}
.flagged div{
top: 12px;
left: 12px;
width: 80%;
height: 80%;
}
.opened{
border: solid 1px gray;
}
.c1{
color: blue;
}
.c2{
color: green;
}
.c3{
color: orangered;
}
.c4{
color: darkred;
}
.c5 {
color: slategrey;
}
.c6{
color: black;
}
.c7{
color: aqua;
}
.c8{
color: blueviolet;
}