-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathusersstyle.css
More file actions
79 lines (69 loc) · 1.51 KB
/
Copy pathusersstyle.css
File metadata and controls
79 lines (69 loc) · 1.51 KB
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
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background: linear-gradient(to bottom right, #28966a, #28966a);
margin: 10px auto;
}
.container {
width: 100%;
padding: 20px;
box-sizing: border-box;
text-align: center;
border-radius: 24px;
background: linear-gradient(to bottom right, #627e4600, #0b835300);
}
.profile-img {
width: 150px;
height: 150px;
border-radius: 50%;
margin-bottom: 20px;
}
.link {
display: block;
padding: 15px;
max-width: 100%;
background: linear-gradient(to bottom right, #a5be8c8f, #16ac70);
text-decoration: none;
color: var(--text-primary, #333);
border-radius: 12px;
margin: 18px auto;
transition: all .3s ease-in-out;
/* Center the links horizontally */
}
.link img {
width: auto;
height: 80px;
/* Set the height of the image */
margin-right: 10px;
/* Spacing between image and text */
border-radius: 50%;
}
.link:hover {
transform: scale(1.1);
background: linear-gradient(to bottom right, #e09d62, #c25609);
}
@media (min-width: 1200px) {
.container {
max-width: 1140px;
margin: 10px auto;
}
}
@media (min-width: 992px) {
.container {
max-width: 960px;
margin: 10px auto;
}
}
@media (min-width: 768px) {
.container {
max-width: 720px;
margin: 10px auto;
}
}
@media (min-width: 576px) {
.container {
max-width: 540px;
margin: 10px auto;
}
}