-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresponsive.css
More file actions
60 lines (49 loc) · 938 Bytes
/
responsive.css
File metadata and controls
60 lines (49 loc) · 938 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
/* responsive.css - Adaptabilidad para móviles y tablets */
/* Tablets */
@media (max-width: 900px) {
.video-card {
width: calc(50% - 10px);
}
}
/* Celulares */
@media (max-width: 600px) {
.banner-container {
height: 200px;
}
.lang-btn {
top: 10px;
right: 10px;
font-size: 0.9rem;
padding: 5px 10px;
}
.profile-section {
margin-top: -50px;
}
.pfp-img {
width: 100px;
height: 100px;
border-width: 2px;
}
.profile-section h1 {
font-size: 2rem;
letter-spacing: 2px;
}
section {
padding: 20px;
}
section h2 {
font-size: 1.5rem;
}
.video-grid {
flex-direction: column;
}
.video-card {
width: 100%;
}
.btn {
display: block;
width: 100%;
text-align: center;
box-sizing: border-box;
}
}