-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
64 lines (55 loc) · 1.09 KB
/
Copy pathstyle.css
File metadata and controls
64 lines (55 loc) · 1.09 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
60
61
62
63
#body1{
background-image: url('wall2.jpg');
}
#body2{
background-image: url('wall3.jpg');
}
body{
background-size: cover;
display: flex;
justify-content: center;
align-items: center;
}
a{
height: 60%;
width: 50%;
text-decoration: none;
display: flex;
justify-content: center;
align-items: center;
}
.blurbox{
background: rgba(40, 40, 40, 0.29);
height: 100%;
width: 100%;
border-radius: 16px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(5.4px);
-webkit-backdrop-filter: blur(5.4px);
border: 1px solid rgba(255, 255, 255, 0.3);
display: flex;
justify-content: center;
align-items: center;
}
div{
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
color:#fff;
}
.hi{
display: flex;
justify-content: center;
align-items: center;
font-size: larger;
margin: auto;
}
.link{
display: flex;
justify-content: center;
align-items: center;
font-size: smaller;
margin: 5%;
text-align: center;
}
div:hover{
cursor: pointer;
}