-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
55 lines (47 loc) · 1.06 KB
/
Copy pathstyle.css
File metadata and controls
55 lines (47 loc) · 1.06 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
@import url(https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;800;900&display=swap);
* {
margin: 0;
padding: 0;
box-sizing: border-box;
color: #fff;
}
body {
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
text-align: center;
font-family: 'Montserrat', sans-serif;
background-color: #4158D0;
background-image: linear-gradient(43deg, #4158D0 0%, #C850C0 46%, #FFCC70 100%);
}
.container {
display: flex;
flex-direction: column;
gap: 5px;
background-color: rgba(204, 204, 204, 0.5);
padding: 15px 25px;
border-radius: 10px;
user-select: none;
cursor: pointer;
font-weight: 500;
transition: all 0.5s;
margin-bottom: 25px;
}
.container:hover {
box-shadow: 0px 26px 70px 1px rgba(0, 0, 0, 0.4);
transform: scale(1.002);
}
.container h1 {
font-weight: 500;
}
.copyright {
position: absolute;
bottom: 50px;
}
@media (max-width: 460px) {
.container h1 {
font-size: 22px;
}
}