-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
61 lines (52 loc) · 1017 Bytes
/
styles.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
html,
body {
height: 100%;
}
* {
margin: 0;
padding: 0;
color: white;
font-family: sans-serif;
}
.container {
width: 100%;
height: 100%;
text-align: center;
background: #f2f2f2;
display: flex;
flex-direction: column;
align-items: center;
flex-grow: 5;
}
.file-input {
display: none;
}
label {
width: 250px;
height: 100px;
background: #f5a509;
cursor: pointer;
font-size: 20px;
margin-top: 5%;
display: flex;
justify-content: center;
align-items: center;
}
.photos {
height: 100%;
width: 100%;
display: inline-block !important;
}
.img {
width: 200px;
height: 200px;
background: rgba(255, 255, 255, 0.25);
background: rgba(255, 255, 255, 0.25);
box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
backdrop-filter: blur(4px);
-webkit-backdrop-filter: blur(4px);
border-radius: 10px;
border: 1px solid rgba(255, 255, 255, 0.18);
margin-left: 10px;
margin-top: 5%;
}