-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
65 lines (65 loc) · 1.16 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
62
63
64
65
*{
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: "Rubik",sans-serif;
}
body{
background-image: radial-gradient(circle 248px at center, #16d9e3 0%, #30c7ec 47%, #46aef7 100%);
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.container{
background-color: #ffffff;
width: 50%;
min-width: 450px;
padding: 50px 20px;
border-radius: 7px;
box-shadow: 0 20px 35px rgba(0,0,0,0.05);
text-align: center;
}
h1 {
margin-bottom: 20px;
}
input[type="file"]{
display: none;
}
label{
display: block;
position: relative;
background-color: #025bee;
color: #ffffff;
font-size: 18px;
text-align: center;
width: 300px;
padding: 18px 0;
margin: auto;
border-radius: 5px;
cursor: pointer;
}
.container p{
text-align: center;
margin: 20px 0 30px 0;
}
#images{
width: 90%;
position: relative;
margin: auto;
display: flex;
justify-content: space-evenly;
gap: 20px;
flex-wrap: wrap;
}
figure{
width: 150px;
}
img{
width: 150px;
}
figcaption{
text-align: center;
font-size: 13px;
margin-top: 0.5vmin;
}