-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
64 lines (51 loc) · 901 Bytes
/
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
body{
background: #0ec9ee;
text-align: center;
font-family: monospace;
}
.card{
background: #1d2630;
border-radius: 6px;
display: inline-block;
height: 470px;
width: 375px;
margin-top: 60px;
box-shadow: 0 12px 13px rgba(0,0,0,0.16),0 12px 13px rgba(0,0,0,0.16);
}
.img{
border-radius: 100%;
margin-top: 60px;
height: 128px;
width: 132px;
}
.name{
color: #fff;
}
.title{
color: #7c8097;
font-size: 16px;
}
.desc{
font-size: 14px;
margin-right: 65px;
margin-left: 65px;
color: #b7b8c0;
margin-top: 16px;
}
.btn{
outline: none;
background: #fff;
margin-top: 20px;
border: none;
height: 40px;
width: 35%;
color: #15b2c3e6;
font-size: 16px;
border-radius: 30px;
}
.btn:hover{
color: #fff;
background: #0dcbe0;
transition: all 400ms linear;
cursor: pointer;
}