-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
61 lines (60 loc) · 1.14 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
#container{
width: 100vw;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
#upload-container{
display: flex;
width: 450px;
height: 350px;
border: 2px dashed rgba(0,0,0,0.5);
flex-direction: column;
justify-content: space-evenly;
align-items: center;
}
#description{
color: hsl(0,0%,30%);
font-size: 18px;
}
#upload-container>i{
color: rgba(16, 81, 221,0.8);
}
#upload-button{
width: 80%;
padding: 5px 0px;
text-align: center;
border: 1px solid rgba(16, 81, 221,0.8);
color:rgba(16, 81, 221,0.8);
border-radius: 10px;
cursor: pointer;
font-size: 18px;
}
#preview{
width: 80%;
height: 35%;
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
}
#preview img{
width: 80px;
height: 80px;
border-radius: 50%;
object-fit: cover;
vertical-align: bottom;
border:1px solid rgba(0, 0, 0, 0.5);
}
#preview span{
color: hsl(0,0%,30%);
font-size: 18px;
word-break: break-all;
white-space: pre;
}