-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdailyNote.css
More file actions
160 lines (136 loc) · 3.27 KB
/
Copy pathdailyNote.css
File metadata and controls
160 lines (136 loc) · 3.27 KB
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
/*====================*/
/* Daily Note Styling */
/*====================*/
.daily {
padding-left: 25px !important;
padding-right: 25px !important;
padding-top: 20px !important;
}
/* Transition Effect Weather One */
.weather_current_1,
.weather_historical_1 {
transition: 0.3s;
}
/* Transition Effect Weather Two */
.weather_current_2,
.weather_historical_2 {
transition: 0.3s;
}
/* Transition Effect Weather Three */
.weather_current_3,
.weather_historical_3 {
transition: 0.3s;
}
/* Transition Effect Weather Four */
.weather_current_4,
.weather_historical_4 {
transition: 0.3s;
}
/* Historical & Current weather One, Two, Three and Four common settings */
.weather_historical_1, .weather_current_1, .weather_historical_2, .weather_current_2, .weather_historical_3, .weather_current_3, .weather_historical_4, .weather_current_4 {
display: flex;
float: left;
clear: left;
align-items: center;
top: 45px;
left: 55px;
white-space: pre;
position: absolute;
font-family: monospace;
font-size: 14pt !important;
margin: 10px 5px;
padding: 10px 20px;
border-radius: 20px;
box-shadow: 3px 3px 2px #414654;
cursor: pointer;
}
/* Historical weather at top of the document over banner */
.weather_historical_1, .weather_historical_2, .weather_historical_3, .weather_historical_4 {
color: #d0dce9;
background-color: #0d3d56;
}
/* Current weather at top of the document over banner */
.weather_current_1, .weather_current_2, .weather_current_3, .weather_current_4 {
color: #c4caa5;
background-color: #133e2c;
opacity: 0;
}
/* Show Current weather One on hover */
.weather_current_1:hover {
opacity: 1;
}
/* Show Current weather Two on hover */
.weather_current_2:hover {
opacity: 1;
}
/* Show Current weather Three on hover */
.weather_current_3:hover {
opacity: 1;
}
/* Show Current weather Four on hover */
.weather_current_4:hover {
opacity: 1;
}
/* Daily Note Name H6 Styling (YYYY-MM-DD) */
.daily h6 {
font-size: 1.75em;
color: #4cbf90;
border-width: 1px;
padding-bottom: 3px;
text-align: center;
}
/* Daily Note Date H5 Styling (🔹 Thursday 🔹 10th November 🔹 2022 🔹) */
.daily h5 {
font-size: 1.25em;
color: #23a49d;
border-width: 1px;
padding-bottom: 3px;
text-align: center;
}
/* Hide the frontmatter for Daily Notes
.daily .frontmatter-container {
display: none;
}
*/
/*==============================*/
/* Display Daily Notes Calendar */
/*==============================*/
.calendar table {
top: 30px;
right: 30px;
position: absolute;
background-color: #0d3d56;
border-radius: 10px;
}
.calendar thead {
background-color: #147980;
}
.calendar th {
color: goldenrod !important;
}
.calendar table th:first-of-type {
border-top-left-radius: 6px;
}
.calendar table th:last-of-type {
border-top-right-radius: 6px;
}
.calendar .internal-link {
color: rgb(215, 146, 27);
}
.calendar .internal-link.is-unresolved {
color: silver;
}
.calendar td strong {
border-radius: 50%;
padding: 3px;
border: 2px solid #229ecf;
color: black !important;
}
.calendar mark {
/* color: #fd0707 !important; */
background: #0d3d56;
}
.calendar strong .internal-link{
color: #23bca5 !important;
/* background: #0d3d56; */
}