-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
66 lines (56 loc) · 993 Bytes
/
Copy pathstyle.css
File metadata and controls
66 lines (56 loc) · 993 Bytes
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
/* Profile-related styles */
body {
background-color: black;
color: white;
font-family: Arial, sans-serif;
margin: 0;
}
#hero1 {
width: 100%;
display: flex;
justify-content: center;
align-items: center;
}
.profile-container {
text-align: center;
}
.profile-picture {
border-radius: 50%;
width: 150px;
height: 150px;
}
.username {
font-size: 2em;
margin: 10px 0;
}
.title {
font-size: 1.5em;
margin: 10px 0;
}
.social-icons img {
width: 50px;
height: 50px;
margin: 0 10px;
}
.commissions-button {
background-color: red;
color: white;
border: 2px solid red;
border-radius: 50px;
padding: 10px 40px;
font-size: 1em;
margin: 20px 0;
cursor: pointer;
transition: all 0.2s ease;
}
.commissions-button:hover {
background-color: black;
color: red;
border: 2px solid red;
}
.commissions-button:active {
transform: scale(0.95);
}
button:hover {
opacity: 0.8;
}