-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStyle.css
More file actions
100 lines (84 loc) · 1.63 KB
/
Style.css
File metadata and controls
100 lines (84 loc) · 1.63 KB
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
@import url(https://fonts.googleapis.com/css?family=PT+Sans:400,400italic);
@import url(https://fonts.googleapis.com/css?family=Droid+Serif);
html, body{
background:#2F1E27;
}
body{
counter-reset:section;
text-align:center;
}
.container{
position:relative;
top:10px;
}
.container h1, .container span{
font-family:"Pt Sans", helvetica, sans-serif;
}
.container h1{
text-align:center;
color:#fff;
font-weight:100;
font-size:1.2em;
margin-bottom:10px;
}
.container h2{
font-family:"droid serif";
font-style:italic;
color:#d3b6ca;
text-align:center;
font-size:3.1em;
}
.container form span:before {
counter-increment:section;
content:counter(section);
border:3px solid #4c2639;
width:40px;
height:40px;
color:#fff;
display:inline-block;
border-radius:50%;
line-height:1.6em;
font-size:1.5em;
position:relative;
left:-22px;
top:-11px;
background:#2F1E27;
}
form{
margin-top:30px;
display:inline-block;
}
.fields{
border-left:3px solid #4c2639
}
.container span{
margin-bottom:20px;
display:inline-block;
}
.container span:last-child{
margin-bottom:-19px;
}
input{
border:none;
outline:none;
display:inline-block;
height:44px;
vertical-align:middle;
position:relative;
bottom:14px;
right:1px;
border-radius:30px;
width:220px;
box-sizing:border-box;
padding:0 18px;
}
input[type="button"]{
background:rgba(197,62,126,.33) ! important;
color:#fff;
position:relative;
font-size: 18px;
left:9px;
top:25px;
width:100px;
cursor:pointer;
}