-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStyles.html
More file actions
157 lines (135 loc) · 3.16 KB
/
Copy pathStyles.html
File metadata and controls
157 lines (135 loc) · 3.16 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
<style type="text/css">
/* Background pattern from subtlepatterns.com */
html {
font-size: 13px;
}
body {
background-color: #98b7e3;
background-image: url('//raw.githubusercontent.com/takvol/GoogleScriptForm/master/background.png');
background-repeat: repeat;
background-position: left top;
font-family: "Roboto", arial, sans-serif;;
color: rgb(119,119,119);
font-weight: 400;
font-size: 1.080rem;
font-style: normal;
line-height: normal;
padding: 0 .75rem;
}
.form-container {
margin: 0.75rem auto;
max-width: 700px;
min-width: 280px;
width: 100%;
background-color: #FFF;
border-radius: 2px;
border: 1px solid rgb(212,212,212);
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
box-sizing: border-box;
}
.form-content {
padding: 3rem;
}
.form-group {
margin-bottom: 1.5em;
}
.q-title {
color: rgb(80,80,80);
font-weight: 700;
font-size: 1.100rem;
font-style: normal;
display:inline-block;
}
.q-desc {
margin-top: .25rem;
color: #777;
font-weight: 400;
font-size: 1.000rem;
font-style: normal;
}
.scale-label {
font-size: 1.000rem;
width: 20%;
}
form-title {
font-family: "Roboto";
color: rgb(80,80,80);
font-weight: 400;
font-size: 2.460rem;
font-style: normal;
}
.form-footer,
.form-heading {
padding-top: 2.5rem;
padding-left: 3rem;
padding-right: 3rem;
}
.form-footer {
border-top:1px solid #ddd;
padding-bottom: 2.5rem;
}
.required-asterisk {
color: rgb(196,59,29);
}
input[type='text'], input:not([type]), textarea {
font-size: 1.000rem;
}
div.upload {
position:relative;
display: inline-block;
}
.js .upload input {
position:absolute;
top: 0;
left: 0;
display: inline-block !important;
width: 100% !important;
height: 100% !important;
opacity: 0 !important;
overflow: hidden !important;
}
.no-js .upload input + label,
.no-js .upload input + .button {
display: none;
}
.upload label {
width: 120px;
display:inline-block;
vertical-align: middle;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
text-align: center;
}
.upload input:focus + .button,
.upload input.has-focus + .button {
-moz-box-shadow: inset 0 0 0 1px #fff;
-webkit-box-shadow: inset 0 0 0 1px #fff;
box-shadow: inset 0 0 0 1px #fff;
}
.upload input:active + .button {
background: -moz-linear-gradient(top, #f8f8f8, #f1f1f1);
background: -ms-linear-gradient(top, #f8f8f8, #f1f1f1);
background: -o-linear-gradient(top, #f8f8f8, #f1f1f1);
background: -webkit-linear-gradient(top, #f8f8f8, #f1f1f1);
background: linear-gradient(top, #f8f8f8, #f1f1f1);
border: 1px solid #ccc;
-moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
color: #111;
}
.upload input:hover + .button {
background: -moz-linear-gradient(top, #f8f8f8, #f1f1f1);
background: -ms-linear-gradient(top, #f8f8f8, #f1f1f1);
background: -o-linear-gradient(top, #f8f8f8, #f1f1f1);
background: -webkit-linear-gradient(top, #f8f8f8, #f1f1f1);
background: linear-gradient(top, #f8f8f8, #f1f1f1);
border: 1px solid #c6c6c6;
color: #111;
text-decoration: none;
}
textarea {
width: 70%;
}
</style>