-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
48 lines (44 loc) · 1.06 KB
/
Copy pathstyle.css
File metadata and controls
48 lines (44 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
body {
font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
margin: 0;
background-image: url("background.jpg");
background-repeat: no-repeat;
background-size: cover;
background-position: center;
}
span {
color: rgb(245, 106, 238);
font-weight: bolder;
font-size: 1.5rem;
}
.container {
text-align: center;
padding: 20px;
border-radius: 20px;
background: rgba(255, 255, 255, 0.1);
box-shadow: 0 25px 45px 0 rgba(218, 33, 33, 0.2);
border: 1px solid rgba(212, 47, 47, 0.5);
border-right: 2px solid rgba(212, 47, 47, 0.2);
border-bottom: 2px solid rgba(212, 47, 47, 0.2);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
}
.button-container {
margin-top: 20px;
}
button {
cursor: pointer;
border: none;
border-radius: 3px;
background-color: rgba(230, 53, 185, 0.7);
color: #fff;
font-size: 16px;
transition: background-color 0.3s ease;
}
button:hover {
background-color: rgba(29, 7, 23, 0.7);
}