-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
126 lines (111 loc) · 1.79 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
.mainInterface {
background-color: rgb(50, 50, 50);
background-position: center;
padding: 50px;
height: 560px;
}
.help {
background-color: rgb(75, 75, 75);
float: left;
font-size: 20px;
width: 256px;
padding: 16px;
margin: 20px;
}
.options {
background-color: rgb(75, 75, 75);
width: 412px;
padding: 16px;
height: 488px;
float: left;
}
.scanResult {
background-color: rgb(75, 75, 75);
height: 512px;
width: 512px;
float: left;
}
.drawingArea {
min-height: 128px;
min-width: 128px;
max-height: 1024px;
max-width: 1024px;
}
button {
padding-top: 5px;
padding-bottom: 5px;
padding-left: 20px;
padding-right: 20px;
border-radius: 5px;
border-style: none;
background-color: #ffccb5;
transition: background-color 0.2s, border-radius 0.2s;
}
button:active {
background-color: #ffe7dd;
}
html,
body {
height: 100%;
margin: 0px;
}
input,
textarea,
select {
padding: 5px;
border-radius: 5px;
border-style: none;
background-color: #ffccb5;
transition: border-radius 0.5s;
}
input:hover,
input:focus,
select:hover,
select:focus,
textarea:focus,
textarea:hover,
button:hover {
border-radius: 0px;
outline: none;
}
input:disabled,
select:disabled,
button:disabled {
border-radius: 5px;
color: #808080;
background-color: #adadad;
border-style: none;
}
input:focus,
select,
textarea,
button {
border-style: none;
}
form,
button,
h1,
h2,
h3,
h4,
h5,
h6,
p {
margin: 2px;
}
.title {
font-size: 32px;
text-align: center;
margin: auto;
}
hr {
border-color: #ff864e;
}
#schedule {
width: 0%;
height: 100%;
background-color: #ff8800;
transition: width 0.5s,background-color 1s;
overflow: hidden;
text-align: center;
}