-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
124 lines (107 loc) · 1.92 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
body {
width: 100%;
background-color: #000;
background-image: radial-gradient(circle at top right, rgba(121, 68, 154, 0.13), transparent), radial-gradient(circle at 20% 80%, rgba(41, 196, 255, 0.13), transparent);
}
canvas {
position: fixed;
width: 100%;
height: 100%;
}
a {
position: relative;
bottom: 2vmin;
right: 2vmin;
color: rgba(255, 255, 255, 0.4);
text-decoration: none;
}
.amir {
width: 100%;
max-width: 300px;
height: auto;
margin-left: auto;
margin-right: auto;
border-radius: 50%;
}
.social-media {
position: relative;
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
padding: 0 10px;
}
.social-media a {
margin: 0 20px;
color: #FFF;
font-size: 70px;
padding: 10px;
text-decoration: none;
transition: all 0.4s ease;
}
.social-media a:hover {
color: #3b5998;
}
.space {
margin-top: 300px;
}
.social-media-item {
display: block;
width: 50px;
height: 50px;
line-height: 100px;
text-align: center;
border-radius: 50%;
padding: 20x;
background-color: #333;
color: #fff;
margin: 30px;
font-size: 24px;
transition: all 0.2s ease-in-out;
}
.fa {
z-index: 1;
}
@media (max-width: 767px) {
.social-media {
display: block;
text-align: center;
padding: 0 15px;
}
.social-media-item {
width: 30px;
height: 30px;
font-size: 20px;
margin: 10px;
margin-top: 10px;
padding: 10px;
}
.social-media a {
margin: 0 15px;
color: #FFF;
font-size: 60px;
text-decoration: none;
transition: all 0.4s ease;
margin-top: 10px;
margin-bottom: 10px;
}
.space {
margin-top: 150px;
}
}
.photo-container {
display: flex;
justify-content: center;
align-items: center;
max-width: 100%;
position: relative;
z-index: 10;
}
.responsive-photo {
margin-top: 150px;
width: 300px;
height: 300px;
max-width: 300px;
object-fit: cover;
border-radius: 50%;
}