-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
82 lines (82 loc) · 1.56 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
73
74
75
76
77
78
79
80
81
82
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600&display=swap');
body {
background: linear-gradient(90deg, black 50%, white 50%);
display: flex;
min-height: 97vh;
font-family: 'Poppins', sans-serif;
font-weight: 600;
}
.card {
margin: auto;
background-color: #000000;
border-radius: 50px;
display: flex;
flex-direction: column;
align-items: center;
overflow: hidden;
box-shadow: 10px 10px 10px 5px #aca9a9;
}
.card-body {
display: flex;
flex-direction: column;
align-items: center;
background-color: white;
padding: 20px 35px;
}
@media only screen and (max-width:350px) {
.card-body {
padding: 20px 20px;
}
}
.img-container {
padding: 50px;
}
.img {
border-radius: 50%;
width: 150px;
height: 150px;
box-shadow: 0 0 10px 5px #837a8e;
transition: .5s;
filter: grayscale(80%);
}
.img {
transform: scale(1.1);
filter: grayscale(0%);
}
.img:hover {
transform: scale(1.2);
}
.title {
font-size: 25px;
margin: 10px auto 5px;
}
.subtitle {
font-size: 10px;
margin: 5px auto;
}
.links {
display: flex;
margin: 10px auto;
color: #000000;
}
.icon {
margin: 10px;
font-size: 30px;
transition: .5s;
}
.icon:hover {
transform: scale(1.3);
}
.instagram {
background: #000000;
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.description {
word-wrap: break-word;
width: 200px;
font-size: 13px;
text-align: center;
margin: 10px auto;
}