-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle3.css
60 lines (59 loc) · 1.06 KB
/
style3.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
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
*{
margin: 0;
padding: 0;
}
#particles-js{
height: 100vh;
background-image: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.6)),url("https://www.cypherium.io/wp-content/uploads/2020/07/Home-Banner-Image.jpg");
background-position: center;
background-size: cover;
}
.navbar-brand{
font-family: 'Roboto', sans-serif;
}
.navbar-brand::after{
content: '';
display: block;
height: 2px;
width: 0;
background: #fff;
transition: width 0.3s;
}
.navbar-brand:hover::after{
width: 100%;
transition: width 0.3s;
}
.title{
position: absolute;
top: 40%;
left: 26%;
color: #fff;
}
.title h1{
font-size: 3rem;
font-family: 'Roboto', sans-serif;
}
.title h1:hover{
color: #007cba;
transition: color 0.2s;
}
.title{
position: absolute;
top: 40%;
left: 27%;
color: #fff;
}
.title h1{
font-size: 3rem;
}
.btn{
position: absolute;
left: 8%;
}
.btn a{
margin: 0 5px;
color: #fff;
font-size: 1.2rem;
font-family: 'Roboto', sans-serif;
}