-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
64 lines (64 loc) · 1.17 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
body{
margin:0;
background:url(frack_logo.png) left 20px no-repeat;
color:#eee;
font:23px/1.4 serif;
}
.open{
background-color:#381;
}
.closed{
background-color:#b11;
}
div{
margin:-20px auto;
border:7px solid #c83;
}
p{
margin:0 auto;
width:60%;
}
.box{
position:relative;
padding:40px;
width:50%;
background:#333;
text-align:center;
-moz-border-radius:2em;
-webkit-border-radius:2em;
border-radius:2em;
z-index:1;
}
.dashes{
width:20%;
height:160px;
border-width:0 5px;
}
.error{
margin:-15px 0 15px;
width:100%;
color:#f33;
}
/* ********************************************************************
* Rotation styles
*
* Do not rotate form fields, mobile browsers fail to display if you do
* ***************************************************************** */
.slant_left,
.slant_right input{
-webkit-transform:rotate(-2deg);
-moz-transform:rotate(-2deg);
}
.slant_right,
.slant_left input{
-webkit-transform:rotate(2deg);
-moz-transform:rotate(2deg);
}
.dashes.slant_left{
-webkit-transform:rotate(-5deg);
-moz-transform:rotate(-5deg);
}
.dashes.slant_right{
-webkit-transform:rotate(5deg);
-moz-transform:rotate(5deg);
}