blob: acc1aab89e1a01638c28407673a105bfa938ba52 (
plain) (
blame)
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
|
body {
background-color: #182028 !important;
}
#root {
font-family: "Inconsolata";
font-size: 18px;
margin: auto;
max-width: 800px;
padding: 0 1em;
text-align: justify;
color: #eee;
}
#root img {
width: 100%;
margin-bottom: 0.5rem;
}
a {
color: #846;
text-decoration: none;
}
a:hover {
box-shadow: inset 0 0px 0 white, inset 0 -1px 0 #456;
}
.profile-description {
padding: 0.5rem;
white-space: pre;
}
.btn {
background: #283038;
color: #f6c;
border: 0px;
border-radius: 2px;
padding: 0.2em 0.4em;
font-size: 1em;
font-family: "Inconsolata";
cursor: pointer;
text-transform: uppercase;
letter-spacing: 0.05em;
font-weight: 800;
}
.progress-bg {
background: none;
filter: blur(3px);
-moz-filter: blur(3px);
-webkit-filter: blur(3px);
position: absolute;
width: 100px;
height: 100px;
}
.progress-svg {
animation: progress-rotate 2s linear infinite;
height: 100px;
width: 100px;
position: relative;
}
.progress-path {
stroke-dasharray: 0, calc(20 * 7);
stroke-linecap: round;
stroke: #888a;
-moz-transition: stroke-dasharray 0.3s ease;
-webkit-transition: stroke-dasharray 0.3s ease;
transition: stroke-dasharray 0.3s ease;
}
@keyframes progress-rotate {
100% {
transform: rotate(360deg);
}
}
.progress-wrapper {
display: inline-block;
}
#push-url {
position: relative;
display: inline;
}
#push-url-input {
min-width: 40%;
color: white;
background-color: transparent;
border: 1px solid transparent;
border-bottom-color: rgba(252, 49, 113, 0.2);
}
#push-url-input:focus {
outline: none;
}
#push-url-input::placeholder {
color: rgba(255, 255, 255, 0.3);
}
#push-url-span {
position: absolute;
bottom: 0;
left: 50%;
width: 100%;
height: 1px;
opacity: 0;
background-color: #fc2f70;
transform-origin: center;
transform: translate(-50%, 0) scaleX(0);
transition: all 0.3s ease;
}
#push-url-input:focus ~ span {
transform: translate(-50%, 0) scaleX(1);
opacity: 1;
}
.progress-status {
width: 100%;
text-align: center;
font-size: 0.9em;
}
/*# sourceMappingURL=blure.css.map */
|