-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
71 lines (71 loc) · 1.11 KB
/
styles.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
body {
background-color: #fff;
}
p {
margin: 0 0 10px 0;
}
#container {
position: relative;
width: 600px;
padding: 20px;
margin: 0 auto;
border-radius: 5px;
border: 1px solid #ccc;
box-shadow: 0px 3px 5px #444;
background-color: #efefef;
}
.from-to {
border: 1px solid #ccc;
width: 320px;
padding: 10px;
margin-bottom: 10px;
}
#question {
overflow: hidden;
/*height: 160px;*/
}
.square-root {
position: absolute;
top: 20px;
right: 20px;
height: 150px;
width: 150px;
background-color: #ccc;
border: 1px solid #ccc;
border-radius: 5px;
box-shadow: inset 0px 0px 10px #333;
color: #333;
font-size: 24px;
line-height: 150px;
text-align: center;
text-transform: uppercase;
text-shadow: 1px 1px #efefef;
}
#box {
position: relative;
overflow: hidden;
width: 200px;
height: 200px;
margin: 0 auto;
border: 1px solid #333;
border-radius: 5px;
box-shadow: 0px 0px 10px #333;
}
.box {
position: relative;
float: left;
background-color: red;
}
.size-5 {
width: 5px;
height: 5px;
}
.box.white {
background-color: white;
}
.box.gray {
background-color: gray;
}
.box.black {
background-color: black;
}