Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/examples/2_Maths_countingSheep/css/lesson.css
blob: a9976773cc9764432f8007556796d31dde064a2b (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
@CHARSET "UTF-8";
body{
	font-family: Verdana, "Geneva CE", lucida, sans-serif;
}

.panel{
	background: #efebba;
	border: 2px solid #efeb3e;
	padding: 5px 15px 10px;
}

.titles{
	text-align: center;
}
.titles h1{
	font-size: 3em;
}
.titles h2{
	font-size: 2em;
}

#gameArea{
	position: absolute;
	width: 1200px;
	height: 800px;
	background: url(../assets/image/bg.png) no-repeat;
	overflow: hidden;
}

#helpIcon{
	position:absolute;
	right:20px;
	top:20px;
}
#helpText{
	display: none;
	position:absolute;
	width: 400px;
	right:80px;
	top:20px;
}

#dropTarget{
	position:absolute;
	width:780px;
	height:380px;
	left:370px;
	top:400px;
/* 	background: #FAA;
	opacity: 0.4; */
}

.ui-draggable-dragging{
	background: url(../assets/image/shadow.png) no-repeat;
}

#discardTarget{
	position:absolute;
	right:10px;
	bottom:20px;
}

#option0{
	position:absolute;
	left:38px;
	bottom:20px;
}
#option1{
	position:absolute;
	left:15px;
	bottom:125px;
}
#option2{
	position:absolute;
	left:178px;
	bottom:20px;
}