-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
64 lines (61 loc) · 1.2 KB
/
style.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
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
64
body {
margin: 0px;
background-image: linear-gradient(to top, #5a6e91, #2d2d2d);
width: 100vw;
height: 100vh;
}
.topnav {
background-color: #1d1d1d;
overflow: hidden;
box-shadow: 0px 0px 20px 2px #2d2d2d;
}
.topnav a {
display: block;
float: left;
color: white;
text-decoration: none;
font-family: Jura;
padding: 10px 10px;
transition-duration: 300ms;
margin-right: 20px;
}
.topnav a:hover{
color: #3DB5FF;
background-color: #005D91;
box-shadow: 0px 0px 10px 10px #005D91;
}
h1 {
font-family: Prompt;
color: white;
}
p {
color: white;
font-family: jura;
}
.sites {
display: inline-block;
background-color: rgba(0,0,0,0.05);
width: 150px;
height: 150px;
border-radius: 15px;
backdrop-filter: blur(4px);
box-shadow: 0px 0px 10px 0px rgba(0,0,0,.20);
cursor: pointer;
text-decoration: none;
margin: 10px;
transition-delay: 150ms;
transition: all 0.25s ease;
}
#main {
vertical-align: bottom;
text-decoration: none;
font-family: Jura;
color: white;
font-size: 12px;
}
.sites:hover {
cursor: pointer;
transform: translateY(-7px);
background-color: rgba(0,255,255,0.05);
box-shadow: 0px 0px 10px 0px rgba(0,255,255,0.20);
}