-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle4.css
45 lines (37 loc) · 782 Bytes
/
style4.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
@import url('https://fonts.googleapis.com/css?family=Lato:400,700,900|Open+Sans:300,400|Oswald:400,700');
* { padding: 0; margin: 0; box-sizing: border-box }
body {font-family:'Lato',sans-serif;padding: 30px;background: #0078FF;}
.text-center{
text-align: center;
margin-bottom: 20px;
}
.profile-images-card{
margin: auto;
display: table;
background: #fff;
padding: 60px 100px;
box-shadow: 0px 0px 10px #ddd;
}
.profile-images{
width: 300px;
height: 300px;
background: #fff;
border-radius: 50%;
overflow: hidden;
}
.profile-images img{
width: 100%;
height: 100%;
object-fit: cover;
}
.custom-file input[type='file']{
display: none
}
.custom-file label{
cursor: pointer;
color: #000;
text-align: center;
display: table;
margin: auto;
margin-top: 100px;
}