-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path0xHexBrowser.css
146 lines (120 loc) · 2.21 KB
/
0xHexBrowser.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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
body {
margin: 0;
padding: 0;
font-family: Lucida Grande, Arial, sans-serif;
}
button,
input {
outline: none;
}
#controls {
padding: 3px;
}
#controls,
#tabs {
border-bottom: solid 1px #ccc;
background-color: #eee;
}
#controls button,
#controls input,
#tabs button {
font-size: 14px;
line-height: 24px;
border-radius: 2px;
padding: 0 6px;
}
button,
input[type="submit"],
button[disabled]:hover {
border: solid 1px transparent;
background: transparent;
}
button:hover,
input[type="submit"]:hover {
border-color: #ccc;
background: -webkit-linear-gradient(bottom, #cccccc 0%, #f2f2f2 99%);
}
button:active,
input[type="submit"]:active {
border-color: #bbb;
background: -webkit-linear-gradient(bottom, #e2e2e2 0%, #bbbbbb 99%);
}
/* These glyphs are on the small side, make them look more natural when
compared to the back/forward buttons */
#controls #home,
#controls #terminate,
#tabs #addTab {
font-size: 24px;
}
#controls #reload {
font-size: 20px;
}
#controls #zoom,
#controls #find {
font-size: 18px;
}
#location {
border: solid 1px #ccc;
padding: 2px;
width: 100%;
-webkit-box-sizing: border-box;
}
#controls,
#tabs {
display: -webkit-flex;
-webit-flex-direction: column;
}
.tab {
font-size: 11px;
line-height: 1.41;
padding: 5px;
width: 100px;
border-right: 1px solid #ccc;
}
.tab.active {
border-top: 1px solid #eee;
margin-top: -1px;
}
.tab:hover {
cursor: default;
/* background: #ddd; */
}
.tabTitle {
float: left;
padding: 0px 3px;
}
.tabClose {
float: right;
padding: 0px 3px;
}
.tabClose:hover{
background: #ddd;
border-radius: 100px;
}
#controls #location-form {
-webkit-flex: 1;
display: -webkit-flex;
-webit-flex-direction: column;
}
#controls #center-column {
-webkit-flex: 1;
}
/* The reload button turns into a spinning trobber */
.loading #reload {
-webkit-animation: spinner-animation .5s infinite linear;
-webkit-transform-origin: 50% 55.5%;
}
@-webkit-keyframes spinner-animation {
0% { -webkit-transform: rotate(0deg); }
100% {-webkit-transform: rotate(360deg); }
}
/* webview stylings */
webview {
display:none;
position:absolute;
bottom:0;
left: 0;
}
webview.active {
display: inline-flex !important;
}