-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
107 lines (91 loc) · 1.56 KB
/
style.css
File metadata and controls
107 lines (91 loc) · 1.56 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
section{
width: 100%;
max-width: 1000px;
position: absolute;
top: 70%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
padding: 3.5em .75em;
border: 1px solid #e8e8e8;
border-radius: 6px;
background: #fff;
}
.btn{
text-align: center;
padding: .5em .75em;
background: #E3562A;
border: none;
font-weight: 300;
font-size: 1.25EM;
color: #fff;
border-radius: 16px;
transition: all 500ms;
&:hover {
border-radius: 12px;
}
}
input[type=file]{
width: 0;
height: 0;
overflow: hidden;
visibility: hidden;
}
.fileName{
padding-top: 10px;
font-weight: 300;
}
img {
width: 200px; height: 200px;
object-fit: contain;
}
.preview{
position: relative;
width: 250px;
height: 250px;
background: #FFF7EB;
border-radius: 16%;
margin: 0 auto 25px auto;
overflow: hidden;
border: 8px solid #E0E0E0;
}
.loadingLogo{
position: absolute;
top: 50%;
left: 50%;
margin-left: -35px;
margin-top: -35px;
width: 70px;
height: 70px;
border: 5px solid #69CD9B;
border-top: 5px solid #2FDEC1;
border-radius: 100%;
animation: spin 500ms linear infinite;
}
@keyframes spin {
from{
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
body {
background: #f6f6f6;
}
.btn1{
position:relative;
top: 20px;
text-align: center;
padding: .5em .75em;
background: #E3562A;
border: none;
font-weight: 300;
font-size: 1.25EM;
color: #fff;
border-radius: 16px;
transition: all 500ms;
&:hover {
border-radius: 12px;
}
}