Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/css/lesson.css
blob: d3f1795060b884aa0c8fe215daa176e6cf2687d2 (plain)
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
@CHARSET "UTF-8";
#kMain {
    background: url(../assets/image/background.png) no-repeat;
    -moz-background-size: 100% 100%;
    -webkit-background-size: 100% 100%;
}

#questionBox{
	color: blue;
	width: 40%;
	font-weight: bold;
	font-size: 3em;
	margin-top: 10%;
	margin-left: 15%;	
}

#imageBox{
    width: 220px;
    height: 220px;	
}

.imageBox{
	margin-top: 2%;
	margin-left: 20%;
	width: 220px;
	height: 220px;
	visibility: hidden;
}

#options{
	margin-left:5%;
	margin-top:2%;
	width: 70%;
	height: 2em;
}

.option{
	width: 22%;
	height: 40px;
	display:inline-block;
	background-color: yellow;
	padding:5px;
	border: 2px solid green;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	cursor: pointer;
	font-size: 3em;
	text-align: center;
}

.option:hover{
    background-color: rgba(0, 255, 255, 1);
}

/*.playAgain{
	position:absolute;
	top: 10px;
	margin-left:220px;
	width:115px;
	height: 30px;
	padding: 2px 2px 2px 2px;
	}
input{
	color:green;
	
} 

#gameOver{
	margin-left:300px;
	width: 180px;
	height: 20px;
	display: none;
	font: 25px "Rockwell Extra Bold", Geneva, Arial, Helvetica, sans-serif,Times New Roman;
	font-weight: bold;
	background-color: #ccc;
	padding: 10px;
}

*/