-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.scss
112 lines (97 loc) · 1.53 KB
/
app.scss
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
/* app css stylesheet */
$pink : #F62459;
body{
background: #f3f3f3;
}
*{
margin: 0;
padding: 0;
font-family: Lato;
font-weight: 300;
line-height: 1.5;
color: #333;
outline: none;
}
.menu {
list-style: none;
border-bottom: 0.1em solid black;
margin-bottom: 2em;
padding: 0 0 0.5em;
}
.menu:before {
content: "[";
}
.menu:after {
content: "]";
}
.menu > li {
display: inline;
}
.menu > li:before {
content: "|";
padding-right: 0.3em;
}
.menu > li:nth-child(1):before {
content: "";
padding: 0;
}
button{
padding: 0;
border:0;
background: transparent;
}
.btnCustom{
border-radius:30px;
padding: 8px 20px;
background:$pink;
color: #fff;
margin: 20px;
border-bottom: 2px solid #B02044;
}
.btnCustom:hover{
border-radius:30px;
background: #F24671;
color: #fff;
margin: 20px;
}
.btnCustom:active{
border-radius:30px;
background:#B02044;
color: #fff;
margin: 20px;
}
#step1{
height: 100vh;
width: 100vw;
text-align: center;
background: #F3F3F3;
.dropBox{
height: 100%;
width: 100%;
position: relative;
padding-top: 250px;
.text, .afterUpload{
}
}
.dropBox.dragover{
background: #000;
}
}
.progressBar{
width: 600px;
margin: auto;
border-radius: 10px;
background:#fff;
border:1px solid #eee;
overflow: hidden;
height: 10px;
.bar{
position: relative;
width: 0;
background: $pink;
height: 10px;
-webkit-transition: all 2s ease;
-moz-transition: all 2s ease;
transition: all 2s ease;
}
}