-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathglobal.css
More file actions
59 lines (45 loc) · 1.56 KB
/
global.css
File metadata and controls
59 lines (45 loc) · 1.56 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;
}
::selection {
color: rgb(255, 255, 255);
background: rgb(51, 70, 109);
}
::-moz-selection {
color: rgb(255, 255, 255);
background: rgb(51, 70, 109);
}
body {
color: white;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background-image: url("data:image/svg+xml,<svg id='patternId' width='100%' height='100%' xmlns='http://www.w3.org/2000/svg'><defs><pattern id='a' patternUnits='userSpaceOnUse' width='40' height='40' patternTransform='scale(1) rotate(25)'><rect x='0' y='0' width='100%' height='100%' fill='hsla(33, 0%, 7%, 1)'/><path d='M40 45a5 5 0 110-10 5 5 0 010 10zM0 45a5 5 0 110-10 5 5 0 010 10zM0 5A5 5 0 110-5 5 5 0 010 5zm40 0a5 5 0 110-10 5 5 0 010 10z' stroke-width='1' stroke='none' fill='hsla(47, 0%, 10%, 1)'/><path d='M20 25a5 5 0 110-10 5 5 0 010 10z' stroke-width='1' stroke='none' fill='hsla(4, 0%, 10%, 1)'/></pattern></defs><rect width='800%' height='800%' transform='translate(-8,-7)' fill='url(%23a)'/></svg>");
}
.content-container {
backdrop-filter: blur(3px);
min-width: 425px;
width: 50%;
max-width: 1400px;
padding: 3.5%;
border: 1px solid #000735;
border-radius: 50px;
}
a {
text-decoration: none;
color: #0070f3;
}
a:hover {
text-decoration: underline;
}
.font-cursive {
font-family: 'Dancing Script', cursive;
}
.profile-img {
border-radius: 100%;
border: 1px solid white;
}