-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
124 lines (114 loc) · 2.04 KB
/
style.css
File metadata and controls
124 lines (114 loc) · 2.04 KB
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
body {
width: 300px;
height: auto;
padding: 10px;
background-color: rgb(191, 191, 191);
}
h1 {
text-align: center;
}
button {
display: block;
margin: 20px auto;
}
.tabs {
cursor: pointer;
padding: 9px;
border-radius: 10px;
margin: 0px;
list-style: none;
}
.tabs:hover .close-button {
visibility: visible;
display: block;
}
div {
display: flex;
flex-direction: column;
}
span:hover {
cursor: pointer;
background-color: rgb(128, 177, 217);
color: black;
font-weight: bold;
}
.search-container {
display: flex;
justify-content: center;
align-items: center;
}
.search-box {
padding: 8px;
border: 2px solid #ccc;
border-radius: 8px;
width: 300px;
}
#tabcount {
font-size: large;
display: block;
}
/* Define the styling for tab icons */
.tab-icon {
width: 16px; /* Adjust the width and height as needed */
height: 16px;
margin-right: 8px; /* Add spacing between icon and text */
vertical-align: middle; /* Align icons vertically with text */
}
.close-button {
display: none;
visibility: hidden; /* Hide the button by default */
background-color: #f1684f;
color: rgb(0, 0, 0);
border: none;
padding: 4px 8px;
border-radius: 5px;
cursor: pointer;
float: center;
}
.flag-icon {
width: 20px;
height: 20px;
margin-right: 5px;
vertical-align: middle;
}
select {
padding: 5px;
}
/* style.css */
Button {
padding: 10px 20px;
background-color: #007bff; /* Blue color */
color: white;
border: none;
border-radius: 9px;
cursor: pointer;
margin-right: 10px;
font-size: 13px;
}
Button:hover {
background-color: #0056b3; /* Darker blue color on hover */
}
.Buttons {
display: flex;
flex-direction: row;
align-items: center;
}
.group-title {
font-weight: 700;
margin-top: 8px;
}
.most-visited {
background-color: yellow; /* or any other style you want */
}
.visited {
font-size: 13px;
margin-bottom: 5px;
background-color: yellow;
font-weight: 500;
border-radius: 3px;
padding-left: 4px;
}
.selected{
cursor: pointer;
background-color: rgb(190, 0, 0);
}