-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
57 lines (51 loc) · 1010 Bytes
/
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
.input_score{
float: left;
height: auto;
border:none;
padding: 2px 2px 0px;
box-shadow: 1px 1px 5px rgba(16,23,44,0.2);
margin: 5px 5px;
}
#input_score1{
width: 300px;
}
#input_score2{
width: auto;
}
.detail{
border:1px solid grey;
min-height: 10px;
width: 100%;
}
/* ROTATION */
*{
border: 1px red solid;
}
table,td {
border-collapse: collapse;
border: 1px black solid;
}
.rotate{
height: 160px;
margin: 0;
}
tr:nth-of-type(5) td:nth-of-type(1) {
/*visibility: hidden;*/
}
.rotate{
width: 5px;
}
.rotate {
/* FF3.5+ */
-moz-transform: rotate(-45.0deg);
/* Opera 10.5 */
-o-transform: rotate(-45.0deg);
/* Saf3.1+, Chrome */
-webkit-transform: rotate(-45.0deg);
/* IE6,IE7 */
filter: progid: DXImageTransform.Microsoft.BasicImage(rotation=0.083);
/* IE8 */
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0.083)";
/* Standard */
transform: rotate(-45.0deg);
}