-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
126 lines (108 loc) · 1.88 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
body {
padding: 1rem;
height: 100vh;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1rem;
overflow: hidden;
}
.live {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background: #0001;
border-radius: 1rem;
}
.list {
position: relative;
border: 1px solid #0001;
padding: 1rem;
border-radius: 1rem;
overflow: hidden;
}
.list ul {
list-style: none;
max-height: 100%;
overflow-y: auto;
}
.list ul li {
font-size: 1.5rem;
margin-bottom: 1rem;
padding: 0.5rem 1rem;
display: flex;
justify-content: space-between;
align-items: center;
}
.list ul li span {
flex: 1;
}
.list ul li div {
display: flex;
justify-content: center;
align-items: center;
gap: 0.5rem;
}
.list ul li div button {
border: none;
background: none;
cursor: pointer;
outline: none;
width: 3rem;
height: 3rem;
border-radius: 50%;
}
.list ul li div button:hover,
.list ul li div button:focus {
background: #0001;
}
.list ul li div button.bookmarked {
background: #e4acbd;
background: linear-gradient(135deg, #e4acbd50, #086cd850);
}
.list ul li div img {
width: 1.5rem;
height: 1.5rem;
pointer-events: none;
}
.list ul li:hover {
background: #00000005;
border-radius: 0.5rem;
}
.list p {
position: absolute;
bottom: 1rem;
width: 100%;
text-align: center;
opacity: 0.5;
}
.speech {
font-size: 3rem;
text-align: center;
}
@media (max-width: 768px) {
body {
grid-template-columns: 1fr;
}
}
a {
color: #e71d36;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.shafi {
position: absolute;
bottom: 1rem;
width: 100%;
text-align: center;
color: #343a40;
}