-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
148 lines (143 loc) · 2.65 KB
/
styles.css
File metadata and controls
148 lines (143 loc) · 2.65 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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
#search-box {
/* display: flex; */
margin: 0 auto;
width: 90%;
/* border: 4px solid#2c064e; */
border-radius: 2px;
/* background-color: #455a64; */
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
#search-input {
width: 100%;
outline: none;
}
#header-content {
display: flex;
margin-top: 18px;
justify-content: space-around;
}
#undo-submit {
background: rgb(36, 197, 162)
}
#reduce-submit {
background: rgb(184, 56, 84);
}
.head-btn {
padding: 5px 15px;
background: rgb(7, 11, 46);
border: 0 none;
cursor: pointer;
font-family: "Roboto", sans-serif;
font-size: 12px;
/* font: bold; */
font-weight: 800;
color: white;
border-radius: 5px;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
input {
padding: 0px;
}
input:focus {
outline: none;
}
#search-input:focus {
width: 100%;
background-color: rgba(241, 241, 241, 0.904);
}
#header-text {
color: rgb(222, 228, 222);
font-weight: 600;
}
.url-container {
display: flex;
flex-direction: row;
margin: 0 auto;
padding: 2px 2px;
text-align: left !important;
}
body {
text-align: center;
width: 375px;
/* height: 250px; */
overflow-x: hidden;
color: #1f1f1e;
background-color: #343335;
}
h3 {
font-family: "Yanone Kaffeesatz", sans-serif;
font-weight: 300px;
font-size: 30px;
color: whitesmoke;
margin: 0px;
}
#current-tabs {
padding: 2px;
margin: 1px;
}
a:link {
color: rgb(222, 228, 222);
background-color: transparent;
text-decoration: none;
}
a:visited {
color: rgb(222, 228, 222);
background-color: transparent;
text-decoration: none;
}
a:hover {
color: rgb(189, 186, 186);
background-color: transparent;
text-decoration: none;
}
a:active {
color: rgb(222, 228, 222);
background-color: transparent;
text-decoration: none;
}
.break {
flex-grow: 1;
flex-shrink: 1;
background-color: #263b36;
height: 2px;
width: 40%;
display: flex;
position: relative;
top: 0.55em;
margin: 0.7em;
}
#form-search {
display: flex;
}
input[type="submit"] {
padding: 5px 15px;
background: rgb(7, 11, 46);
border: 0 none;
cursor: pointer;
font-family: "Roboto", sans-serif;
font-size: 12px;
/* font: bold; */
font-weight: 800;
color: white;
-webkit-border-radius: 5px;
border-radius: 0px 5px 5px 0px;
}
/* Scroll bar CSS styles */
::-webkit-scrollbar {
width: 4px;
}
/* Track */
::-webkit-scrollbar-track {
background: rgb(35, 38, 51);
border-radius: 2px;
}
/* Handle */
::-webkit-scrollbar-thumb {
background: #c8c7c9;
border-radius: 2px;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: rgb(206, 182, 47);
width: 6px;
}