-
Notifications
You must be signed in to change notification settings - Fork 0
/
tabliss.css
99 lines (85 loc) · 1.45 KB
/
tabliss.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
/* Tabliss Custom CSS */
/* Intended Use-case:
Message
Search box
Quick Links
Custom CSS with the file content
*/
.Overlay {
opacity: 0;
}
.Overlay:hover {
opacity: 1;
}
.middleCentre {
top: 45% !important;
}
@media (max-width: 560px) {
.middleCentre {
top: 50% !important;
}
}
.Widget:has(.Search) {
display: flex;
align-items: center;
justify-content: center;
}
.Search {
margin-top: 3rem;
width: 90vw;
background: white;
color: black;
border-radius: 999vw;
overflow: hidden;
padding-left: 2rem;
}
@media (min-width: 672px) {
.Dashboard .Widget {
width: 561px;
}
}
@media (min-width: 1000px) {
.Dashboard .Widget {
width: 746px;
}
}
.Search > input {
margin: 0.5rem 0;
text-align: left;
font-size: 1.2rem
}
.Links {
padding: 0rem 1rem;
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 0;
}
.Links > a {
padding: 1.5rem 0 1.5rem 0;
border-radius: 5px;
width: 7.3rem;
display: flex;
flex-direction: column;
align-items: center;
gap: 1rem;
margin: 0;
overflow: hidden;
}
.Links a:hover {
background: #fff2;
}
.Links > a > i {
background: #444;
width: 3.2rem;
height: 3.2rem;
border-radius: 999vw;
display: flex;
justify-content: center;
align-items: center;
}
.Links > a > span {
font-size: 1rem;
width: auto;
text-align: center;
}