forked from wodeni/obsidian-penrose-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
71 lines (59 loc) · 1.33 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
/*
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.
*/
/* Style for the container of alias configurations */
.alias-config-container {
margin-top: 20px;
padding: 20px;
border: 1px solid #026579;
border-radius: 5px;
background-color: #121111;
}
/* Style for individual alias settings container */
.alias-settings-container {
margin-bottom: 10px;
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
}
/* Style for the delete button */
.delete-button {
margin-left: 10px;
background-color: #ff4d4f;
color: white;
border: none;
border-radius: 3px;
padding: 5px 10px;
cursor: pointer;
}
.delete-button:hover {
background-color: #ff7875;
}
/* Style for the save button */
.save-button {
margin-left: 10px;
background-color: #04f919;
color: white;
border: none;
border-radius: 3px;
padding: 5px 10px;
cursor: pointer;
}
.save-button:hover {
background-color: #8aff75;
}
/* Style for the add alias button */
.add-alias-button {
margin-top: 20px;
background-color: #52c41a;
color: white;
border: none;
border-radius: 3px;
padding: 8px 16px;
cursor: pointer;
}
.add-alias-button:hover {
background-color: #73d13d;
}