-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
157 lines (129 loc) · 2.57 KB
/
styles.css
File metadata and controls
157 lines (129 loc) · 2.57 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
*, h1 {
padding: 0 0;
margin: 0 0;
}
body {
font-family: Lato, sans-serif;
background-color: rgb(233, 233, 233);
}
header {
background-color: rgb(255, 255, 255);
text-align: left;
box-shadow: 0 3px 6px -2px rgba(50,50,50,.3);
}
header h1 {
float: left;
}
.reset-btn {
float: right;
margin: 10px 20px 0 0;
background-color: rgb(206, 72, 72);
color: #fff;
border-radius: 4px;
padding: 7px 10px 6px 10px;
font-size: 12px;
cursor: pointer;
transition: 0.5s
}
header span:hover {
background: rgb(173, 50, 50);
}
header:after {
content: "";
display: table;
clear: both
}
.wrapper {
width: 50%;
padding: 0 20px;
margin: 0 auto;
}
@media screen and (max-width: 950px) {
.wrapper {
width: 70%;
}
}
@media screen and (max-width: 600px) {
.wrapper {
width: 90%;
}
}
.header-title {
color: rgb(82, 82, 82);
font-weight: 500;
font-size: 20px;
padding: 12px 0px 12px 20px;
}
main {
text-align: center;
margin-top: 40px;
}
main p {
margin-top: 10px;
}
hr {
color: rgb(160, 160, 160);
margin: 20px auto 15px auto !important;
}
.upload-field {
position: fixed;
visibility: hidden;
top: 0;
}
.upload-label {
display: inline-block;
color: #fff;
background-color: rgb(206, 72, 72);
box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
transition: all 0.3s cubic-bezier(.25,.8,.25,1);
padding: 30px 70px;
border-radius: 4px;
font-size: 20px;
font-weight: bold;
margin-top: 35px;
cursor: pointer;
}
.upload-label:hover {
box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
}
.upload-label span, .upload-label img {
vertical-align: middle;
}
.upload-label img {
height: 30px;
margin-right: 15px;
}
.ignored {
background-color: rgb(238, 226, 55);
border-radius: 3px;
border: solid 1px rgb(134, 134, 134);
}
.class-results {
background-color: rgb(255, 255, 255);
box-shadow: 0 3px 6px -2px rgba(50,50,50,.3);
padding: 12px 20px 20px 20px;
border-radius: 4px;
margin-top: 35px;
overflow: hidden;
text-align: left;
}
.dark-box {
border: solid 1px #000;
border-radius: 4px;
background-color: rgb(70, 70, 70);
}
.name-results {
color: rgb(248, 250, 118);
display: inline-block;
margin: 8px 5px 0 0;
padding: 8px 12px;
}
.style-container {
margin-top: 15px;
padding: 8px 12px 2px 12px;
}
.style-container span {
display: block;
color: rgb(190, 190, 190);
margin-bottom: 8px;
}