forked from vikhyatsingh123/Naruto-Shippuden
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
94 lines (82 loc) · 1.63 KB
/
index.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
/* body{
margin: 0;
padding: 0;
box-sizing: border-box;
} */
.to-top {
color: #fff;
position: fixed;
bottom: 16px;
right: 32px;
width: 50px;
height: 50px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 32px;
background: #1f1f1f;
text-decoration: none;
opacity: 0;
pointer-events: none;
transition: all 0.4s;
}
@media only screen and (max-width: 480px) {
.to-top.active {
bottom: 32px;
pointer-events: auto;
opacity: 1;
z-index: 1000;
right: 35%;
}
}
.to-top.active {
bottom: 32px;
pointer-events: auto;
opacity: 1;
z-index: 1000;
right: 5%;
}
.to-top:hover {
color: #fff;
text-decoration: none;
}
main{
margin-bottom: 2rem;
}
.footer {
display: block;
background-color:#2193b0;
text-align: center;
padding: 10px 0 5px 0;
margin-top: 30px;
color: #fff;
font-size: 18px;
font-weight: 500;
}
.footer a span{
color: #062d9b;
}
@media screen and (max-width:500px) {
.footer{
font-size: 14px;
font-weight: 400;
}
}
.link{
border-radius: 30px;
transform: scale(1);
transition: transform ease-in-out 0.5s,background-color ease-in-out 0.4s;
transition-property: scale background-color;
}
.link:hover{
transform: scale(1.07);
transition: transform ease-in-out 0.,background-color ease-in-out 0.4s;
}
.darkmodebutton{
transition: all ease-in-out 0.7s;
}
.darkmodebutton:hover{
box-shadow: white 0 0 20px;
transition: all ease-in-out 0.7s;
}