-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
196 lines (192 loc) · 4.63 KB
/
Copy pathstyle.css
File metadata and controls
196 lines (192 loc) · 4.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
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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
@font-face {
font-family: "psychographiaregular";
src: url("./fonts/psychographia-webfont.woff2") format("woff2"), url("./fonts/psychographia-webfont.woff") format("woff");
font-weight: normal;
font-style: normal;
}
body {
margin: 0;
background: #751d00;
background: -moz-linear-gradient(left, #751d00 0%, #d53e07 18%, #fa8f68 48%, #d8440e 80%, #751d00 100%);
background: -webkit-gradient(left top, right top, color-stop(0%, #751d00), color-stop(18%, #d53e07), color-stop(48%, #fa8f68), color-stop(80%, #d8440e), color-stop(100%, #751d00));
background: -webkit-linear-gradient(left, #751d00 0%, #d53e07 18%, #fa8f68 48%, #d8440e 80%, #751d00 100%);
background: -o-linear-gradient(left, #751d00 0%, #d53e07 18%, #fa8f68 48%, #d8440e 80%, #751d00 100%);
background: -ms-linear-gradient(left, #751d00 0%, #d53e07 18%, #fa8f68 48%, #d8440e 80%, #751d00 100%);
background: linear-gradient(to right, #751d00 0%, #d53e07 18%, #fa8f68 48%, #d8440e 80%, #751d00 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#751d00", endColorstr="#751d00", GradientType=1 );
font-family: "psychographiaregular";
font-weight: lighter;
}
h1 {
font-family: "psychographiaregular";
font-weight: lighter;
font-size: 100px;
text-align: center;
color: #007573;
text-shadow: 2px 2px 5px white;
}
form {
color: white;
display: flex;
justify-content: center;
}
form div {
display: flex;
flex-direction: column;
font-size: 30px;
}
form .project-number {
color: #007573;
font-weight: 500;
text-shadow: 2px 2px 4px white;
text-align: center;
}
form .project-number input[type=text] {
border: none;
padding: 0;
margin: 1em 1em;
text-align: center;
font-size: 30px;
font-family: "psychographiaregular";
font-weight: lighter;
width: 80%;
height: 55px;
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
border-radius: 8px;
background: #007573;
opacity: 0.5;
box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.2), 0 7px 20px 0 rgba(0, 0, 0, 0.2);
}
form .project-number input:hover {
background: white;
color: black;
opacity: 1;
}
form .deadline {
text-align: center;
color: #007573;
font-weight: 500;
text-shadow: 2px 2px 4px white;
}
form .deadline input[type=date] {
padding: 0;
width: 80%;
border: none;
margin: 1em 1em;
text-align: center;
font-size: 30px;
height: 57px;
font-family: "psychographiaregular";
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
border-radius: 8px;
background: #007573;
opacity: 0.5;
box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.2), 0 7px 20px 0 rgba(0, 0, 0, 0.2);
}
form .deadline input:hover {
background: white;
color: black;
opacity: 1;
}
form .languages-amount {
color: #007573;
font-weight: 500;
text-shadow: 2px 2px 4px white;
margin: 0 1em;
}
form .languages-amount label {
font-size: 26px;
margin-top: 1em;
color: white;
text-shadow: 0 0 0;
font-weight: lighter;
}
form .languages-selection {
color: #007573;
font-weight: 500;
text-shadow: 2px 2px 4px white;
margin: 0 1em;
}
form .languages-selection label {
font-size: 26px;
margin-top: 1em;
color: white;
text-shadow: 0 0 0;
font-weight: lighter;
}
form .btn {
margin-top: 2em;
}
form .btn button {
border: none;
font: inherit;
color: white;
background-color: transparent;
background-color: #007573;
max-width: 80%;
padding: 10px;
font-size: 25px;
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
border-radius: 8px;
background: #007573;
opacity: 0.5;
box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.2), 0 7px 20px 0 rgba(0, 0, 0, 0.2);
}
form .btn button:hover {
background: #000000;
color: white;
opacity: 1;
}
.modal-container {
display: none;
position: fixed;
z-index: 1;
left: 0;
top: 0;
height: 100%;
width: 100%;
overflow: auto;
background-color: rgba(0, 0, 0, 0.5);
}
.modal-container .modal-content {
margin: 15em 30em;
width: 400px;
height: 400px;
box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.2), 0 7px 20px 0 rgba(0, 0, 0, 0.2);
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
border-radius: 8px;
background: #007573;
}
.modal-container .closeBtn {
color: coral;
float: right;
font-size: 40px;
padding-right: 10px;
}
.modal-container .closeBtn:hover {
color: #000000;
text-decoration: none;
cursor: pointer;
}
.modal-container .modal-img {
width: 350px;
height: 350px;
display: flex;
justify-content: center;
align-content: center;
}
.modal-container .modal-img img {
margin-left: 2em;
margin-top: 3em;
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
border-radius: 8px;
width: 80%;
height: auto;
text-align: center;
}
/*# sourceMappingURL=lpt.css.map */