-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
46 lines (44 loc) · 809 Bytes
/
index.css
File metadata and controls
46 lines (44 loc) · 809 Bytes
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
@import url('https://fonts.googleapis.com/css2?family=Marcellus+SC&display=swap');
*{font-family: "Marcellus SC", serif;}
body{
margin:0;
background: linear-gradient(#b5daf4, #3F8EFC);
}
/*Some Css taken from Bc.css*/
.bc-hover-once-spin:hover{
animation: rotation 0.5s linear!important;
}
@keyframes rotation {from {transform: rotate(0deg);}to {transform: rotate(360deg);}}
.title-logo{
width: 300px;
position: absolute;
transform: translate(-50%);
top:0%;
z-index: -1;
opacity: 0.3;
}
.title-text{
font-size: 50px;
}
.blue-box{
background-color: #87BFFF;
padding: 3px;
}
.gray-box{
background-color: #ADD7F6;
padding: 3px;
}
.gray-box a{
color:rgb(13, 13, 219);
}
a{
color:#455fe2
}
.links{
position: absolute;
top:1%;
right:0;
}
.links a{
margin-right: 10px;
}