Welcome to mirror list, hosted at ThFree Co, Russian Federation.

fullnextsearch.css « css - github.com/nextcloud/fulltextsearch.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e8e80044eff481af21d0b9a503e4ce72d070062d (plain)
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
#search_header {
	height: 200px;
	width: 100%;
	text-align: center;
	background-color: #f6f6f6;
	border-bottom: solid #d7d7d7 1px;
}

#search_input {
	width: 400px;
	position: relative;
	top: 50%;
	transform: perspective(1px) translateY(-50%);
}

#search_result {
	margin: 50px 80px 0 50px;
}

.provider_result {
	margin-left: 30px;
}

#noresult {
	font-style: italic;
	position: absolute;
	left: 100px;
}

.provider_name {
	font-size: 16px;
	font-weight: bold;
	letter-spacing: 5px;
	color: #8b8b8b;
	margin-bottom: 8px;
}