-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
188 lines (153 loc) · 3.22 KB
/
style.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
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
@media only screen and (max-width: 950px) {
.title {
font-size: 1.2rem !important;
}
.container {
width: 100% !important;
height: 90% !important;
border-radius: 4px !important;
}
.input,
.output {
width: 100% !important;
height: 39% !important;
margin-left: 0 !important;
margin-right: 0 !important;
font-size: 1.1rem !important;
}
.input:focus,
.output:focus {
border: none !important;
}
.input textarea {
height: 95% !important;
font-size: 1.1rem !important;
}
.enter {
margin-left: 10px !important;
margin-right: 10px !important;
font-size: 1.2rem !important;
}
.svg-icon {
margin-left: 0 !important;
}
}
* {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-weight: 300;
}
body {
background-image: url(images_\(3\).jpeg);
background-size: cover;
overflow: hidden !important;
}
.container {
background: rgba(211, 211, 211, 0.986);
width: 950px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
box-shadow: 0 10px 20px rgba(77, 77, 77, 0.89);
border-radius: 15px;
text-align: center;
}
.title {
margin-bottom: 20px;
}
.select-cont {
font-size: 2rem;
margin-top: 20px;
}
/* .select-cont select {
width: 200px;
font-size: 1.4rem;
margin-left: 20px;
} */
.input {
background: #FFF;
margin-top: 15px;
width: 850px;
margin-left: 50px;
border-radius: 7px;
overflow: scroll;
}
.input textarea {
width: 90%;
height: 200px;
font-size: 18pt;
border: none;
text-align: center;
padding-top: 10px;
}
.input textarea:hover {
border: none;
}
.break {
height: 70px;
}
/* .rule {
float: left;
font-size: 1.4rem;
/* margin: 15px 20px 20px 60px; */
/* margin: 0 0 10px 50px;
} */
.enter {
float: right;
margin-right: 20px;
font-size: 1.4rem;
padding: 3px 12.5px;
margin: 15px 60px 0 15px;
background: #00224e;
border: none;
border-radius: 4px;
color: #FFF;
}
.enter:hover {
padding: 3px 20px;
transition: ease-in-out .2s;
}
.output {
width: 850px;
margin-left: 50px;
height: 200px;
font-size: 18pt;
border: none;
background: #FFF;
margin-bottom: 10px;
border-radius: 7px;
text-align: center;
padding-top: 10px;
overflow: scroll;
}
.svg-icon {
width: 3em;
height: 2em;
margin-top: 20px;
margin-left: 40px;
float: left;
}
.svg-icon path:hover,
.svg-icon polygon:hover,
.svg-icon rect:hover,
.svg-icon circle:hover,
.svg-icon:hover {
fill: #da0101;
transition: ease-in-out .2s;
}
.svg-icon path,
.svg-icon polygon,
.svg-icon rect {
fill: #4691f6;
}
.svg-icon circle {
stroke: #4691f6;
stroke-width: 1;
}
.logo {
position: absolute;
color: rgb(255, 255, 255);
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-size: 1.25rem;
font-weight: 300;
}