-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
37 lines (33 loc) · 720 Bytes
/
style.css
File metadata and controls
37 lines (33 loc) · 720 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
* {
box-sizing: border-box;
font-family: "Kosugi Maru", "Nunito", sans-serif;
line-height: 1.3;
}
body {
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background: linear-gradient(#ecddd6, #c0cdb0);
}
.container {
width: 12rem;
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
margin: auto;
}
text-typer {
box-shadow: 0.5rem 0.5rem 0.5rem rgba(110, 107, 107, 0.5);
border-radius: 0.5rem;
border-top: 1px solid rgba(255, 255, 255, 0.5);
border-left: 1px solid rgba(255, 255, 255, 0.5);
backdrop-filter: blur(5px);
}
@media screen and (min-width: 480px) {
.container {
width: 50vw;
}
}