-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
37 lines (34 loc) · 835 Bytes
/
styles.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
@import url('https://fonts.googleapis.com/css?family=Fira+Code:400,600&display=swap');
body,
html {
height: 100vh;
width: 100vw;
font-family: 'Fira Code', monospace;
background-image: url("background.png");
background-size: cover;
background-repeat: no-repeat;
background-position: center;
background-attachment: fixed;
display: flex;
align-items: center;
justify-content: center;
overflow-x: hidden;
overflow-y: auto;
}
.container {
height: 95vh;
width: 95vw;
background-color: rgba(255, 255, 255, 0.3);
border-radius: 21px;
box-shadow: 0 19px 38px rgba(128, 128, 128, 0.3), 0 15px 12px rgba(128, 128, 128, 0.3);
}
.profile {
opacity: 1;
text-align: center;
}
.logo {
border-radius: 50%;
height: 128px;
width: 128px;
margin-top: 10%;
}