-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
89 lines (81 loc) · 1.53 KB
/
Copy pathstyle.css
File metadata and controls
89 lines (81 loc) · 1.53 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
80
81
82
83
84
85
86
87
88
89
@import url("https://fonts.googleapis.com/css2?family=Tsukimi+Rounded:wght@300;400;500;600;700&display=swap");
body {
margin: 0;
padding: 0;
background-image: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
background-attachment: fixed;
background-repeat: no-repeat;
background-size: cover;
}
.container {
position: relative;
max-width: 50%;
margin: 3.5% auto;
padding: 3.5% 3%;
background-color: #2c2a36cc;
border-radius: 0.5rem;
text-align: left;
line-height: 1.5;
}
.logo {
margin: auto;
width: 100px;
height: 100px;
background-color: #e0e0e0;
border-radius: 50%;
}
.username {
margin: auto;
}
.username p {
font-family: "Tsukimi Rounded", sans-serif;
font-weight: 700;
color: white;
text-align: center;
}
.divider {
margin: auto;
width: 50%;
height: 1px;
background-color: white;
}
.divList {
display: flex;
justify-content: center;
align-items: center;
}
.social {
padding: 0;
margin: 0;
display: flex;
justify-content: center;
align-items: center;
}
.social li {
list-style-type: none;
padding: 0;
margin: 0.6em 0.4em;
}
.circle-button {
display: inline-block;
width: 50px;
height: 50px;
border-radius: 50%;
background-color: white;
border: none;
box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
transition: background-color 0.3s ease;
cursor: pointer;
}
.circle-button:hover {
background-color: purple;
}
@media screen and (max-width: 768px) {
.container {
width: 80%;
}
.logo {
width: 150px;
height: 150px;
}
}