-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
112 lines (99 loc) · 1.84 KB
/
styles.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
106
107
108
109
110
111
112
body {
font-family: Arial, sans-serif;
font-size: 16px;
background-color: #eee;
display: grid;
grid-template-rows: minmax(68px, auto) 1fr;
grid-template-columns: 100%;
}
h1 {
text-align: center;
grid-row: 1;
grid-column: 1;
margin-bottom: 20px;
}
form {
text-align: center;
margin-bottom: 20px;
display: flex;
align-items: center;
justify-content: center;
grid-row: 2;
grid-column: 1;
max-height: 75px;
}
label {
display: inline-block;
width: 90px;
}
input[type="text"] {
width: 400px;
padding: 12px 20px;
margin: 8px 0;
box-sizing: border-box;
border: 2px solid #ccc;
border-radius: 4px;
}
select {
width: 100px;
padding: 12px 20px;
margin: 8px 20px 8px 0;
box-sizing: border-box;
border: 2px solid #ccc;
border-radius: 4px;
cursor: pointer;
}
button[type="submit"] {
width: 100px;
background-color: #4CAF50;
color: white;
padding: 14px 20px;
margin: 8px 0;
border: none;
border-radius: 4px;
cursor: pointer;
}
button[type="submit"]:hover {
background-color: #45a049;
}
.pre-loader {
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
background-color: #eee;
position: absolute;
top: 0;
left: 0;
}
.pre-loader .loader {
width: 50px;
height: 50px;
border-radius: 30px;
border: 5px solid #ccc;
border-top-color: #333;
animation: spin 1s linear infinite;
}
@keyframes spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
#result {
background-color: white;
padding: 20px;
border-radius: 4px;
grid-row: 3;
grid-column: 1;
height: 72vh;
border: 1px solid #ccc;
}
iframe {
width: 100%;
height: 100%;
border: none;
}