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

public-share.scss « css - github.com/nextcloud/files_texteditor.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6eb269cb39af5917a1d55da7049ec82c33a120d3 (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
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
.preview.formatted-text {
	max-width: 810px;
	padding: 0px 20px !important;
	box-sizing: border-box;
	font-size: 18px;
	line-height: 1.6em;
	min-height: 440px;
	color: #333;
	text-align: left;
	margin-bottom: 170px !important;

	h1,
	h2,
	h3 {
		margin-top: 1em;
		word-wrap: break-word;
	}

	h1 {
		line-height: 1.1em;
		margin-bottom: 1em;
		text-align: center;
		font-size: 3em;
	}

	h2 {
		line-height: 1.1em;
		margin-bottom: .5em;
		font-size: 2em;
	}

	h3 {
		line-height: 1.1em;
		margin-bottom: .6em;
		font-size: 1.4em;
	}

	p,
	ul,
	ol,
	pre {
		line-height: 1.45em;
	}
	p,
	details {
		margin-bottom: 17.6px;
	}
	ul,
	ol {
		padding-left: 25px;
	}

	ul {
		list-style-type: disc;
	}

	ul ul {
		list-style-type: circle;
	}

	a {
		color: #448ac9;
		text-decoration: none;
	}
	a:hover,
	a:focus,
	a:active {
		text-decoration: underline;
	}

	em {
		opacity: 1;
		font-style: italic;
	}

	code {
		background-color: rgb(242, 242, 242);
		border-radius: 3px;
		padding: 5px 12px;
		display: block;
		white-space: pre;
		overflow: auto;
	}
}

/* hide image preview during loading or if it renders fine */
.icon-loading .text-preview,
.preview .text-preview:not(.default-overridden) {
	display: none !important;
}