-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
105 lines (90 loc) · 1.56 KB
/
main.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
@import url(http://fonts.googleapis.com/css?family=News+Cycle:400,700);
body {
background: #e8e8e8;
font-family: "News Cycle", sans-serif;
}
input {
font-family: "News Cycle", sans-serif;
}
textarea {
font-family: "News Cycle", sans-serif;
font-size: 24px;
overflow: auto;
resize: none;
}
textarea:focus, input:focus {
outline: none;
}
.wrapper {
width: 320px;
height: 420px;
padding-bottom: 10px;
position: absolute;
top: 50%;
left: 50%;
margin-left: -160px;
margin-top: -215px;
background: white;
border-radius: 4px;
border: 1px solid #dbd9d9;
}
.wrapper .form-header {
font-weight: 400;
text-align: center;
padding: 10px;
background: #efb364;
color: white;
}
.wrapper .report-form {
padding: 0px 20px;
position: relative;
}
.wrapper .report-form textarea {
width: 280px;
border: none;
color: #444;
}
#textarea_feedback {
position: absolute;
bottom: -20px;
right: 10px;
bottom: -35px;
color: #999;
}
.wrapper .formfeedback {
position: absolute;
top: -300px;
}
input#submit {
background: #efb364;
width: 280px;
padding: 5px 0;
margin: 0;
border: 1px solid #C98D3F;
color: white;
font-size: 24px;
font-weight: 700;
border-radius: 2px;
cursor: pointer;
-webkit-transition: 0.2s;
-moz-transition: 0.2s;
transition: 0.2s;
}
input#submit:hover {
background: #ef9f37;
}
.footer {
position: absolute;
bottom: 0;
padding: 20px 0;
text-align: center;
width: 800px;
left: 50%;
margin-left: -400px;
}
.footer .blurb {
margin-bottom: 10px;
}
.footer a {
margin: 0 10px;
}