-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
63 lines (63 loc) · 971 Bytes
/
main.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
* {box-sizing: border-box}
input {
width: 100%;
border: none;
background: #d6cccc;
padding: 16px;
margin: 6px 0 21px 0;
display: inline-block;
}
input:focus {
background-color: rgb(190, 119, 119);
outline: none;
}
output {
word-wrap: break-word;
}
hr {
border: 2px solid #f1f1f1;
margin-bottom: 26px;
}
.green {
color: green
}
.red {
color: red
}
button {
padding: 13px 29px;
margin: 9px 0;
background-color: #4CAF50;
color: white;
width: 100%;
cursor: pointer;
opacity: 0.8;
border: none;
}
.waiting {
background-color: #bec4be;
}
button:hover {
opacity:1;
}
button {
float: left;
width: 50%;
padding: 14px 20px;
}
.container {
padding: 16px;
}
.clearfix::after {
content: "";
clear: both;
display: table;
}
form {
border:1px solid rgb(180, 209, 76)
}
@media screen and (max-width: 790px) { /* frontend option for small monitors */
button {
width: 100%;
}
}