-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
128 lines (114 loc) · 2.4 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
body {
--color-back: white;
--color-title-back: #55887c;
--color-title: #ffffff;
--color-theme: #ffc252;
--color-text: rgb(67, 66, 66);
--color-icon-front: #55887c;
--color-toolbar: #ffc252;
--color-toolbar-button: black;
}
@font-face {
font-family: "Material Icons";
font-style: normal;
font-weight: 400;
src: url(https://fonts.gstatic.com/s/materialicons/v67/flUhRq6tzZclQEJ-Vdg-IuiaDsNcIhQ8tQ.woff2)
format("woff2");
}
body {
font-family: Verdana, Geneva, Tahoma, sans-serif;
background-color: var(--color-back);
margin: 0;
}
h1 {
font-size: large;
text-align: center;
background-color: var(--color-title-back);
color: var(--color-title);
margin: 0;
padding: 16px;
user-select: none;
}
span.icon {
font-family: "Material Icons";
display: inline-block;
font-feature-settings: "liga";
margin-bottom: 0px;
color: var(--color-icon-front);
font-size: 16px;
vertical-align: sub;
user-select: none;
}
ul {
list-style: none;
padding: 0;
text-align: center;
display: flex;
margin: 5px;
}
form {
margin: 16px;
text-align: center;
}
textarea {
display: block;
width: 90%;
margin: 8px auto;
height: 60px;
font-size: 16px;
padding: 10px;
border: 2px solid var(--color-title-back);
border-radius: 5px;
resize: none;
overflow: hidden;
}
button {
display: block;
text-decoration: none;
background-color: var(--color-toolbar);
color: var(--color-toolbar-button);
font-size: 13px;
padding: 8px 8px;
line-height: 1;
margin: 8px 8px;
font-weight: bold;
border-radius: 8px;
border: 2px solid var(--color-icon-front);
user-select: none;
}
#notes {
flex-flow: column;
flex-wrap: nowrap;
align-items: stretch;
align-content: center;
justify-content: space-evenly;
padding-bottom: 50px;
color: var(--color-text);
}
#notes li {
margin-bottom: 16px;
border-top: 2px dotted var(--color-title-back);
padding-top: 8px;
}
#toolbar {
flex-wrap: wrap;
align-items: stretch;
align-content: center;
justify-content: space-evenly;
}
body > #toolbar {
position: fixed;
bottom: 0;
margin: 0;
width: 100%;
background-color: var(--color-toolbar);
}
@media (display-mode: standalone), (display-mode: minimal-ui) {
body > #toolbar {
padding: env(safe-area-inset-top) env(safe-area-inset-right)
env(safe-area-inset-bottom) env(safe-area-inset-left) !important;
}
#itemInstall {
display: none;
}
}