-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyles.css
114 lines (101 loc) · 2.1 KB
/
styles.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
/* View styles */
.yv {
align-items: stretch;
border: 0 solid black;
box-sizing: border-box;
flex-basis: auto;
flex-direction: column;
flex-shrink: 0;
margin: 0;
min-height: 0;
min-width: 0;
padding: 0;
position: relative;
/* default z-index, because =0 causes some problems with dropdowns */
/* z-index: 0; */
}
/* Force display flex for all elements (except the hidden ones). */
.yv:not(.collapse):not(.carousel-item):not(.dropdown-menu):not(.modal):not(.navbar):not(.navbar-toggler):not(.navbar-collapse):not(.offcanvas):not(.tab-pane),
.yv.show {
display: flex !important;
}
.yv.navbar,
.yv.navbar-toggler,
.yv.navbar-collapse {
display: flex;
}
.yv-inline:not(.collapse):not(.carousel-item):not(.dropdown-menu):not(.modal):not(.navbar):not(.navbar-toggler):not(.navbar-collapse):not(.offcanvas):not(.tab-pane),
.yv-inline.show {
display: inline-flex !important;
}
.yv-inline.navbar,
.yv-inline.navbar-toggler,
.yv-inline.navbar-collapse {
display: inline-flex;
}
.yv-hit-slop {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: -1;
}
/* Text styles */
.yt {
border-width: 0;
box-sizing: border-box;
/* color: black; */
display: inline;
/* font: 14px System; */
margin: 0;
padding: 0;
white-space: pre-wrap;
word-wrap: break-word;
}
.yt-has-ancestor {
/* color: inherit; */
/* font: inherit; */
white-space: inherit;
}
.yt-one-line {
max-width: 100%;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.yt-multi-line {
display: -webkit-box;
max-width: 100%;
overflow: hidden;
text-overflow: ellipsis;
-webkit-box-orient: vertical;
}
p.yt:not(.yt-has-ancestor) {
margin-bottom: 1rem;
}
/* Image styles */
.yi-a11y {
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
height: 100%;
opacity: 0;
width: 100%;
z-index: -1;
}
/* Reset styles for heading, link, and list DOM elements */
.y-reset {
background-color: transparent;
/* color: inherit; */
/* font: inherit; */
list-style: none;
margin: 0;
text-align: inherit;
text-decoration: none;
}
.y-cursor {
cursor: pointer;
}