-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathapp.css
74 lines (60 loc) · 1.55 KB
/
app.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
* {
box-sizing:border-box;
}
body {
padding:50px 0;
}
.repeated-form-fields {
background:#eee;
padding:0 0 20px;
}
.field-number {
font-size:70px;
padding-top:50px;
text-align:center;
}
select {
width:100%;
}
.repeated-form-row {
position:relative;
padding:20px 0;
border-bottom:2px dashed #ddd;
}
.inner-actions {
padding:20px 0 0;
}
.field-actions {
position:absolute;
right:0;
top:20px;
}
.submit-actions {
padding:40px 0;
}
.page-header {
margin-bottom:50px;
}
body {
border-top:5px solid maroon;
background: -moz-linear-gradient(top, rgba(150,150,150,0.5) 0%, rgba(0,0,0,0) 50px); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(150,150,150,0.5)), color-stop(50px,rgba(0,0,0,0))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, rgba(150,150,150,0.5) 0%,rgba(0,0,0,0) 50px); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, rgba(150,150,150,0.5) 0%,rgba(0,0,0,0) 50px); /* Opera 11.10+ */
background: -ms-linear-gradient(top, rgba(150,150,150,0.5) 0%,rgba(0,0,0,0) 50px); /* IE10+ */
background: linear-gradient(to bottom, rgba(150,150,150,0.5) 0%,rgba(0,0,0,0) 50px); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a6ff4444', endColorstr='#00000000',GradientType=0 ); /* IE6-9 */
}
.errors {
color:maroon;
padding:5px 0 0;
}
.page-header {
position:relative;
}
.page-header nav {
position:absolute;
top:0;
right:0;
}
survey-editor-field, survey-editor-form, survey-editor-fields { display:block; }