-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuser.css
35 lines (30 loc) · 1.12 KB
/
user.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
.user-description {
/* Texts written in Dataedo application are wrapped using tag with class .user-description. */
/* Setting the white-space property to pre-wrap means that all newlines will be preserved. */
white-space: pre-wrap;
}
/* Default font configuration. */
.v-layout {
font-family: -apple-system, Segoe UI, Open Sans, Arial, sans-serif;
line-height: initial;
font-size: 14px;
}
.v-content .doc-summary, /* table with object basic information */
.v-content .doc-actions, /* permlinks on the right side */
.v-content .doc-metadata, /* timestamps at the object bottom */
.v-content .table table th, /* table headers */
.v-content .table table td, /* table cells */
.v-content .doc-breadcrumb .v-item /* breadcrumb */ {
font-size: 13px;
}
/* Headers font configuration. */
h1, h2, h3,
h4, h5, h6 {
font-family: -apple-system, Segoe UI, Open Sans, Arial, sans-serif;
font-weight: 700;
}
h1 { font-size: 22px; }
h2, .v-content .v-header { font-size: 15px; }
/* Color of hyperlinks and their color on mouse hover. */
a { color: #4679C6; }
a:hover { color: #04589f; }