This repository has been archived by the owner on Oct 1, 2024. It is now read-only.
forked from mikecann/Chrome-Crawler
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmain.css
122 lines (100 loc) · 1.75 KB
/
main.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
body {
color: #1E1E1E;
font: normal normal normal 0.75em/1.73em Verdana, Arial, Geneva, Helvetica, sans-serif;
overflow-x: hidden;
margin: 0;
padding: 8px;
width: 600px;
}
input[type="text"],
button {
padding: 4px 5px;
border: 1px solid #dddddd;
}
button {
border-radius: 3px;
background: #f5f5f5;
}
button:not([disabled]) {
cursor: pointer;
}
button:hover:not([disabled]) {
background: #efefef;
}
button:focus:not([disabled]) {
background: #e2e2e2;
outline: none;
}
button:active:not([disabled]) {
background: #d2d2d2;
outline: none;
}
#set-to-current-page-button {
margin-right: 10px;
}
header {
background: #f2f2f2;
margin: -8px -8px 0 -8px;
padding: 8px 8px 0 8px;
box-shadow: 0 2px 4px rgba(0,0,0,.2);
}
nav {
font-size: 99%;
margin-top: 1em;
display: flex;
align-items: center;
}
#tabs-left,
#tabs-right {
padding: 0px;
margin: 0px;
display: flex;
}
#tabs-left {
margin-right: 10px;
}
#tabs-right {
font-size: 10px;
margin-left: auto;
}
.nav-item,
.open-tab-button {
display: block;
list-style-type: none;
}
.open-tab-button {
text-decoration: none;
padding: 5px;
white-space: nowrap;
}
li.open-tab-button {
border-bottom: 3px solid #000000;
}
a.open-tab-button {
border-bottom: 3px solid #f2f2f2;
}
#urls-being-searched
{
padding: 0px;
}
#urls-being-searched li {
list-style-type: none;
}
#crawl-url-and-button {
padding-left: 35px;
padding-top: 5px;
}
#icon {
position:absolute;
top: 11px;
left: 9px;
z-index: 10;
width: 25px;
height: 25px;
}
#urls-being-searched li:nth-child(even) {
background-color: #f8f8f8
}
#report-outer-root {
overflow-x: scroll;
}