-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
80 lines (71 loc) · 1.6 KB
/
style.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
* {
margin: 0px;
padding: 0px;
-webkit-tap-highlight-color: rgba(0,0,0,0);
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
span {
display: inline-block;
vertical-align: middle;
line-height: normal;
text-align: center;
}
#container {
width: 800px;
display: block;
margin-left: auto;
margin-right: auto;
vertical-align: middle;
cursor: pointer;
}
.squared {
width: 155px;
height: 155px;
border: 1px solid black;
text-align: center;
float: left;
vertical-align: middle; /* */
line-height: 155px; /* */
transition-property: background-color;
transition-duration: 1s;
-moz-transition-property: background-color;
-moz-transition-duration: 1s;
-webkit-transition-property: background-color;
-webkit-transition-duration: 1s;
}
.squared_hover:hover, .squared_hover:active {
background-color: lightgray;
-webkit-user-select: none;
-webkit-touch-callout: none
}
.selected {
color: #f1f1f1;
background-color: #38008C;
}
h1 {
color: blue;
font-weight: bold;
}
#header, #footer {
display: block;
float: left;
width: 600px;
/* color: blue; */
opacity: 0.5;
/* text-shadow: 0px 1px 0px #e1e1e1, 0px -1px 0px #313131; */
background-color: none;
font-size: 1em;
/* font-weight: bold; */
padding: 8px 20px 8px 20px;
transition-property: background-color;
transition-duration: 1s;
-moz-transition-property: background-color;
-moz-transition-duration: 1s;
-webkit-transition-property: background-color;
-webkit-transition-duration: 1s;
}