-
Notifications
You must be signed in to change notification settings - Fork 246
/
style.css
47 lines (36 loc) · 1.26 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
body { background-color:#e1e1e1;
color:#fff;
font-family: Arial, sans-serif;
font-size:11px;
line-height: 14px;
padding:0px;
margin:0px;
}
.box { background-color:#ff4499;
-moz-border-radius:3px;
-khtml-border-radius: 3px;
-webkit-border-radius:3px;
border-radius:3px;
-webkit-transition: all 300ms cubic-bezier(1.000, 0.000, 0.000, 1.000);
-moz-transition: all 300ms cubic-bezier(1.000, 0.000, 0.000, 1.000);
-ms-transition: all 300ms cubic-bezier(1.000, 0.000, 0.000, 1.000);
-o-transition: all 300ms cubic-bezier(1.000, 0.000, 0.000, 1.000);
transition: all 300ms cubic-bezier(1.000, 0.000, 0.000, 1.000); /* easeInOutExpo */
-webkit-transition-property: left, right, top;
-moz-transition-property: left, right, top;
-ms-transition-property: left, right, top;
-o-transition-property: left, right, top;
transition-property: left, right, top;
}
#container { background: red;}
.size21, .size22, .size23, .twocols { background: #ccc }
.size31, .size32, .size33, .threecols { background: #ff9999 }
a.btn {
margin-right: 1px;
line-height: 30px;
height: 30px;
cursor: pointer;
display: inline-block;
width: 75px;
color: red;
}