-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
94 lines (81 loc) · 1.36 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
/* Global Styles */
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Arial, sans-serif;
background-color:whitesmoke;
color: #333;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
/* Profile Picture */
.profile-picture {
display: block;
width: 200px;
height: 200px;
border-radius: 50%;
margin: 20px auto;
}
/* Profile Name */
.profile-name {
font-size: 24px;
font-weight: bold;
text-align: center;
margin-bottom: 20px;
}
.links {
text-align: center;
margin-top: 20px;
background-color: #fff;
border: 1px solid #ccc;
border-width: 2px;
padding: 20px;
font-weight:normal;
width: 290px;
display: block;
margin-left: auto;
margin-right: auto;
border-radius: 40px;
transition: background-color 0.3s ease;
font-size: 18px;
}
*/
.links:hover {
background-color: #eee;
}
/* Responsive Styles */
@media screen and (max-width: 768px) {
.container {
padding: 10px;
}
.profile-picture {
width: 150px;
height: 150px;
}
.profile-name {
font-size: 20px;
}
.links {
font-size: 14px;
padding: 6px 12px;
margin-bottom: 4px;
}
}
a{
text-decoration: none;
color:black;
font-size: 16px;
transition: color 0.3s ease;
}
.link-icon {
width: 30px;
height: 30px;
margin-left: 5px;
vertical-align: middle;
}