-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
122 lines (98 loc) · 1.64 KB
/
main.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
* {
/*border: 1px solid black;*/
}
body {
max-width: 100%;
height: 100vh;
overflow-x: hidden;
background: linear-gradient(to bottom right, #13564f, #1f3863);
}
#container {
height: 100%;
}
#left {
float: left;
width: 25%;
}
#center {
float: left;
width: 50%;
}
#right {
float: left;
width: 20%;
}
#innerleft,#innercenter {
padding: 10% 5% 0 5%;
}
#innerright {
padding: 2% 5px 0 5px;
}
#board {
width: 400px;
height: 400px;
margin: auto;
padding: 20%;
position: relative;
}
.hole {
box-shadow: inset 0 0 0 1000px rgba(0,0,0,.95);
}
#complete {
background-size: 100% 100%;
height: 250px;
}
.tmotor {
position:absolute;
background-image: url('motor.jpg');
border: 1px solid white;
}
.tkiss {
position:absolute;
background-image: url('kiss.jpg');
border: 1px solid white;
}
.tlion {
position:absolute;
background-image: url('lion.jpg');
border: 1px solid white;
}
.town {
border: 1px solid white;
background-image: url('motor.jpg');
position:absolute;
}
input[type=radio] {
border: 0px;
width: 20%;
height: 2em;
margin-right: 5px;
}
IMG.center {
margin-left: auto;
margin-right: auto;
width: 100px;
}
.between {
padding: 15px 5px;
border-bottom: 3px dashed #5bc0de;
}
.foot {
clear: both;
background-color: #f0ad4e;
width: 100%;
padding: 5px;
margin: 20px 0;
color: white;
text-align: center;
}
#status {
background-color: #5bc0de;
transition: all .3s;
margin: 8px auto;
padding: 15px;
display: block; font-size: 20px;
}
.completed-puzzle {
background-color: #5cb85c !important;
}