-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy pathstyle.css
118 lines (102 loc) · 2.15 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
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
body {
/* background: linear-gradient(-45deg, #7209b7, #f72585, #7209b7, #f72585); */
background: linear-gradient(
45deg,
#00dbfb,
#00cbff,
#00b7ff,
#6d9cff,
#b477ff,
#e353d4,
#fb299f,
#ff0066,
#ff5523,
#eb9200,
#b0c400,
#22eb2a
);
background-size: 700%;
background-position: left;
background-attachment: fixed;
animation-name: colormovinganimation;
animation-duration: 10s;
animation-iteration-count: infinite;
animation-direction: alternate-reverse;
}
@keyframes colormovinganimation {
0% {
background-position: left;
}
100% {
background-position: right;
}
}
/* ========= update (youtanimstar) start ========= */
::-webkit-scrollbar-track
{
border-radius: 50px;
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
background-color: #F5F5F5;
}
::-webkit-scrollbar
{
width: 7px;
border-radius: 50px;
background-color: #F5F5F5;
}
::-webkit-scrollbar-thumb
{
background-color: #AB6EF7;
}
/* ========= update (youtanimstar) end ========= */
h1{
font-family: monospace;
}
.active-page-btn{
scale: 1.2;
transition: all 0.5s;
}
.grid{
transition: all 0.5s;
}
.author-text{
color: black !important;
font-weight: bold;
}
/* =================== Search bar ================ */
.search {
margin-bottom: 20px;
}
input {
outline: none;
}
input[type=search] {
-webkit-appearance: textfield;
-webkit-box-sizing: content-box;
font-family: inherit;
font-size: 100%;
}
input::-webkit-search-decoration,
input::-webkit-search-cancel-button {
display: none;
}
input[type=search] {
padding: 9px 10px 9px 32px;
width: 50%;
background: #ededed url(https://static.tumblr.com/ftv85bp/MIXmud4tx/search-icon.png) no-repeat 9px center;
border: solid 1px #ccc;
-webkit-border-radius: 10em;
-moz-border-radius: 10em;
border-radius: 10em;
-webkit-transition: all .5s;
-moz-transition: all .5s;
transition: all .5s;
}
input[type=search]:focus {
width: 70%;
background-color: #fff;
border-color: #66CC75;
-webkit-box-shadow: 0 0 5px rgba(109,207,246,.5);
-moz-box-shadow: 0 0 5px rgba(109,207,246,.5);
box-shadow: 0 0 5px rgba(109,207,246,.5);
}