File: styles.css

package info (click to toggle)
browserpass 2.0.22-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 568 kB
  • sloc: sh: 128; makefile: 112
file content (175 lines) | stat: -rw-r--r-- 2,757 bytes parent folder | download
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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
body {
  padding: 0;
  margin: 0;
  font-family: sans-serif;
  min-width: 350px;
  background: white;
  font-size: 14px;
  overflow-y: hidden;
}

.search > form {
  border-bottom: 1px solid #bbb;
  display: flex;
  flex-wrap: nowrap;
}

.search > form :last-child {
  width: 100%;
}

.search input {
  box-sizing: border-box;
  width: 100%;
  padding: 6px;
  border: 0;
  background: url("icon-search.svg") center right 6px no-repeat;
  background-size: 16px 16px;
  background-color: white;
  color: black;
  padding-right: 20px;
}

#filter-search {
  background: #eee;
  border: 0;
  box-sizing: border-box;
  display: none;
  padding: 6px;
  padding-top: 5px;
  white-space: nowrap;
}

.search input:focus {
  outline: 0;
}

.status-text {
  padding: 6px;
}

.results {
  width: 100%;
  min-width: 160px;
}

.entry {
  display: flex;
  flex-flow: row;
  border: 0;
  border-bottom: 1px dotted #ccc;
}

.copy,
.launch {
  width: 32px;
  border: 0;
  cursor: pointer;
}

.url {
  background: no-repeat url("icon-globe.svg") center;
  background-size: 16px 16px;
}

.username {
  background: no-repeat url("icon-user.svg") center;
  background-size: 16px 16px;
}

.password {
  background: no-repeat url("icon-key.svg") center;
  background-size: 16px 16px;
}

.otp {
  background: no-repeat url("icon-otp.svg") center;
  background-size: 16px 16px;
}

.login {
  display: flex;
  flex: 1;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 0 0 0 12px;
  cursor: pointer;
  border: 0;
  text-align: left;
  background-color: white;
  color: black;
  line-height: 1.2;
  white-space: nowrap;
}

.login.favicon {
  background-repeat: no-repeat;
  background-position: left 8px center;
  background-size: 16px 16px;
  padding-left: 32px;
}

.login .store {
  background-color: #090;
  border-radius: 4px;
  color: #fff;
  height: calc(100% - 22px);
  line-height: 100%;
  margin: 10px 4px 10px 0;
  padding: 2px 4px;
}

.login .name {
  height: 100%;
  line-height: 100%;
  padding: 12px 0;
}

.entry:last-of-type {
  border-bottom: 0;
}

.entry > *:hover,
.entry > *:focus {
  outline: 0;
  background-color: #eee;
}

.loader {
  margin: 12px auto;
  display: block;
  text-indent: -9999999px;
  border: 3px solid rgba(0, 0, 0, 0.2);
  border-left-color: #000000;
  -webkit-transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  overflow: hidden;
  border-radius: 50%;
  vertical-align: middle;
  width: 12px;
  height: 12px;
}

#clipboard-container {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 0px;
  height: 0px;
  z-index: 100;
  opacity: 0;
}

#clipboard {
  width: 1px;
  height: 1px;
}

@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}