-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
72 lines (71 loc) · 1.34 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
66
67
68
69
70
71
72
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
background-color: #f4f4f4;
}
.container{
padding: 120px;
margin: 30px auto;
justify-content: center;
align-items: center;
}
/* .card{
display: grid;
grid-template-columns: repeat(3,1fr);
grid-gap: 10px;
} */
.form-group .load{
background-color: green;
width: 120px;
margin :0px 10px;
}
.card .user-card{
background-color: white;
max-width: 400px;
padding: 30px;
margin: 0px 10px;
text-align: center;
border-radius: 10px;
border-bottom: 1px solid green;
box-shadow: 5px 4px 6px 8px rgba(0,0,0,0.05);
}
.img img{
width: 100%;
border-radius: 50%;
border: 4px solid #c9c9c9;
}
.title{
color: #2B3467;
font-weight: 700;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.gender{
color: #2E3840;
opacity: 0.8;
}
.header{
margin-bottom: 20px;
}
.form-group{
margin-bottom: 8px;
}
.form-group strong{
opacity: 0.8;
color: #2E3840;
font-weight: 700;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.form-group button{
width: 100%;
padding: 10px;
margin-top: 10px;
background-color: #2B3467;
color: white;
border: none;
border-radius: 7px;
font-weight: 700;
cursor: pointer;
}