-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
128 lines (127 loc) · 2.89 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
119
120
121
122
123
124
125
126
127
128
@charset "UTF-8";
@import "https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css";
body {
scroll-behavior: smooth;
}
.body {
background-color: #0f0f0f;
font-family: "AlternateGotNo1D";
}
.body .head-logo {
width: 40px;
height: 40px;
}
.body .head-text {
color: white;
letter-spacing: 2px;
}
.body .subnav {
display: flex;
justify-content: center;
}
.body .subnav-icon {
width: 40px;
height: 40px;
transition: all 0.18s ease;
/* transition:
color 0.15s ease-in-out,
background-color 0.15s ease-in-out,
border-color 0.15s ease-in-out,
box-shadow 0.15s ease-in-out,
-webkit-box-shadow 0.15s ease-in-out; */
}
@media (max-width: 575px) {
.body .subnav-icon {
width: 25px;
height: 25px;
}
}
.body .subnav-icon:hover {
transform: scale(1.1);
cursor: pointer;
transition: all 0.18s ease;
/* transition:
color 0.15s ease-in-out,
background-color 0.15s ease-in-out,
border-color 0.15s ease-in-out,
box-shadow 0.15s ease-in-out,
-webkit-box-shadow 0.15s ease-in-out; */
}
.body .subnav #ico-add {
background-image: url("img/ico-add.png");
background-size: 40px 40px;
}
@media (max-width: 575px) {
.body .subnav #ico-add {
background-size: 25px 25px;
}
}
.body .subnav #ico-sort {
background-image: url("img/ico-sort.png");
background-size: 40px 40px;
}
@media (max-width: 575px) {
.body .subnav #ico-sort {
background-size: 25px 25px;
}
}
.body .subnav #buscador input::-moz-placeholder {
letter-spacing: 1px;
}
.body .subnav #buscador input::placeholder {
letter-spacing: 1px;
}
@media (max-width: 575px) {
.body .subnav #buscador .input-group {
width: 100% !important;
}
}
.body .subnav #buscador .input-group .br-left {
border-top-left-radius: 50rem;
border-bottom-left-radius: 50rem;
}
.body .subnav #buscador .input-group .br-right {
border-top-right-radius: 50rem;
border-bottom-right-radius: 50rem;
}
@media (max-width: 575px) {
.body .subnav #buscador .input-group .br-left,
.body .subnav #buscador .input-group .br-right {
height: 30px;
}
}
@media (max-width: 575px) {
.body .subnav #buscador .añadir-video {
height: 30px;
width: 100% !important;
}
}
.body .subnav #listado {
padding: 6px;
/* overflow-y: scroll; */
color: #999;
}
.body .subnav #listado .listado-videos {
font-size: 30px;
}
@media (max-width: 575px) {
.body .subnav #listado .listado-videos {
font-size: 14px;
}
}
.body .subnav #rpd {
width: 75%;
min-height: 500px;
margin-bottom: 3rem;
border: double 3px transparent;
border-radius: 25px;
background-image: linear-gradient(#0f0f0f, rgba(15, 15, 15, 0.5843137255)), linear-gradient(30deg, #085174 0%, #00e8fe 100%);
background-origin: border-box;
background-clip: padding-box, border-box;
}
@media (max-width: 575px) {
.body .subnav #rpd {
width: 96%;
min-height: 285px;
}
}/*# sourceMappingURL=style.css.map */