generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 4
/
styles.css
164 lines (129 loc) · 3.06 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
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
/*
This CSS file will be included with your plugin, and
available in the app when your plugin is enabled.
If your plugin does not need CSS, delete this file.
*/
.search_text_label_box {
margin-bottom: var(--size-4-2);
}
.search_text_label{
font-size: var(--font-ui-small);
color: var(--text-muted);
}
.search_text_box{
border-top: 1px solid var(--background-modifier-border);
}
.search_text{
margin: var(--size-4-2);
margin-bottom: var(--size-4-4);
margin-top: var(--size-4-4);
width: 96%;
border-top: 1px solid var(--background-modifier-border) !important;
}
.notice_error{
background-color: var(--color-red);
}
.preview_list_item{
min-height: fit-content;
display: flex;
align-items: center;
}
.preview_img {
max-height: 112px;
}
.preview_Text{
margin-left: var(--size-4-4);
display: block;
}
.preview_Title{
font-size: large;
}
.preview_Year{
font-size: small;
}
.moviegrabber-confirm-button{
background-color: var(--background-modifier-error);
}
.confirm_preview_item{
min-height: fit-content;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
.confirm_preview_img {
max-height: 224px;
}
.confirm_preview_Text{
margin: var(--size-4-1);
display: flex;
align-items: center;
}
.confirm_preview_Year{
font-size: small;
margin-left: var(--size-4-1);
}
/* -------------------------------------------------- */
/* ------------ Moviegrabber Gallery View ----------- */
/* -------------------------------------------------- */
.moviegrabber-gallery-cardbox{
display: flex;
flex-wrap: wrap;
justify-content: space-evenly;
align-items: flex-start;
width: 100%;
}
.moviegrabber-card-outerbody{
display: flex;
flex-direction: column;
margin: var(--size-4-6);
height: calc(--size-4-18 + 2* --size-4-12 + 512)px;
width: 400px;
background-color: var(--background-secondary) !important;
box-shadow: 10px 11px 19px -1px #070202;
}
.moviegrabber-card-titlebox{
display: flex;
align-items: center;
justify-content: center;
width: 100%;
min-height: var(--size-4-18) !important ;
background-color: var(--background-secondary-alt);
border: 1px solid rgb(48, 48, 48) !important;
box-shadow: 5px 5px 30px -10px #070202;
}
.moviegrabber-card-titletext{
font-weight: bold !important;
color: var(--text-accent) !important;
display: flex;
}
.moviegrabber-card-toprow{
display: flex;
flex-direction: row;
width: 100%;
align-items: flex-start;
justify-content: space-between;
max-height: var(--size-4-12);
padding-right: var(--size-4-2);
padding-left: var(--size-4-2);
}
.moviegrabber-card-countryyearbox{
display: flex;
flex-direction: row;
align-items: flex-start;
max-width: 70%;
}
.moviegrabber-card-country{
font-weight: bold !important;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.moviegrabber-card-year{
}
.moviegrabber-card-length{
float: right;
}
.moviegrabber-card-poster{
width: 100%;
}