This repository has been archived by the owner on Oct 23, 2023. It is now read-only.
forked from qbcore-framework/qb-menu
-
Notifications
You must be signed in to change notification settings - Fork 29
/
style.css
128 lines (114 loc) · 2.18 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
/* Nice font for button from Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;500&display=swap");
* {
padding: 0;
margin: 0;
font-family: sans-serif;
font-weight: bold;
}
#container {
position: absolute;
height: auto;
top: 20%;
right: 20%;
border-radius: 5px;
background: transparent !important;
}
.button {
cursor: pointer;
display: flex;
flex-direction: row !important;
gap: 10px;
}
.title {
cursor: default;
gap: 10px;
display: flex;
flex-direction: row !important;
}
#buttons {
max-height: 75vh;
width: 31vw;
overflow-x: none;
overflow-y: auto;
padding: 10px;
}
html,
body {
background: transparent !important;
}
#buttons::-webkit-scrollbar {
display: none;
}
body::-webkit-scrollbar {
display: none;
}
.button {
width: auto;
max-width: 45%;
height: 10%;
background: #273141;
color: white;
margin: auto;
position: relative;
top: 10%;
margin-top: 0.5rem;
overflow: hidden;
padding: 0.45rem;
border-radius: 0.15rem;
display: flex;
flex-direction: column;
box-shadow: 0rem 0rem 0.5rem 0.05rem #000000;
cursor: pointer;
}
.icon {
display: flex;
align-items: center;
position: relative;
justify-content: left;
}
.button:hover {
background-color: #2d5172;
}
.title {
width: auto;
max-width: 45%;
height: 10%;
background: #273141;
color: white;
margin: auto;
position: relative;
top: 10%;
margin-top: 0.5rem;
overflow: hidden;
padding: 0.45rem;
border-radius: 0.15rem;
display: flex;
flex-direction: column;
box-shadow: 0rem 0rem 0.5rem 0.05rem #000000;
}
.title > div.header {
text-decoration: underline !important;
}
.disabled {
background: #878789 !important;
cursor: default;
}
div > .text {
flex-direction: column;
font-size: 0.75rem;
overflow: hidden;
}
div > .header {
width: 100%;
max-width: 100%;
display: flex;
align-items: center;
position: relative;
justify-content: left;
overflow: wrap;
color: white;
font-size: 0.9rem;
font-weight: 400;
overflow: hidden;
}