-
Notifications
You must be signed in to change notification settings - Fork 2
/
common.css
83 lines (73 loc) · 1.34 KB
/
common.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
html {
background: var(--bg-color);
font-family: var(--rdp-font);
}
/* Main styles */
img,
video {
max-width: 100%;
}
.container {
display: flex;
justify-content: space-between;
max-width: 1200px;
width: 100%;
margin-top: 20px;
position: relative;
}
.load-more-btn-container {
text-align: center;
margin-top: 15px;
margin-bottom: 15px;
}
.load-more-btn {
color: #000;
background-color: #fff;
appearance: none;
border: 1px solid var(--rdp-border-color);
border-radius: 4px;
box-shadow: rgba(27, 31, 35, 0.1) 0 1px 0;
box-sizing: border-box;
cursor: pointer;
display: inline-block;
font-family: inherit;
font-size: inherit;
font-weight: 400;
line-height: 20px;
padding: 4px 12px;
position: relative;
text-align: center;
text-decoration: none;
touch-action: manipulation;
vertical-align: middle;
white-space: nowrap;
}
.load-more-btn:hover {
background-color: #f3f4f6;
}
/* Empty right column for balance */
.right-column {
flex: 0 0 200px;
}
@media screen and (max-width: 1280px) {
.right-column {
flex: 0 0 100px;
}
}
@media screen and (max-width: 768px) {
.container {
flex-direction: column;
align-items: center;
}
.main-content {
width: 80%;
max-width: 100%;
margin-top: 175px;
}
.actor-profile{
width: 100%;
}
sidebar-nav {
width: 100%;
}
}