-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
114 lines (96 loc) · 1.71 KB
/
Copy pathstyle.css
File metadata and controls
114 lines (96 loc) · 1.71 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
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono&display=swap');
* {
box-sizing: border-box;
}
html {
font-size: 15px;
}
body {
font-family: 'Roboto Mono', monospace;
margin: 0;
background-color: #555;
color: #333;
}
main {
padding: 1.5rem;
}
.toolbar {
display: flex;
gap: 0.75rem;
margin-bottom: 1rem;
}
.btn {
background: transparent;
border: 2px dashed #888;
padding: 0.6rem 0.9rem;
cursor: pointer;
transition: 0.2s;
font: inherit;
color: #eee;
}
.btn:hover {
border-color: #fff;
}
.btn.danger {
border-style: solid;
border-color: #b55;
}
.btn.small {
padding: 0.35rem 0.6rem;
color: #333;
border-color: #333;
}
.empty {
background: rgba(255, 255, 255, 0.08);
color: #eee;
padding: 0.75rem;
border: 1px dashed rgba(255, 255, 255, 0.25);
}
.grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 1rem;
}
@media (max-width: 1120px) {
.grid {
grid-template-columns: repeat(3, 1fr);
}
}
@media (max-width: 900px) {
.grid {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 640px) {
.grid {
grid-template-columns: 1fr;
}
}
.note {
background: #fcfa5d;
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
padding: 0.75rem;
height: 12rem;
display: flex;
flex-direction: column;
gap: 0.5rem;
}
.note textarea {
flex: 1;
width: 100%;
border: 0;
resize: none;
outline: none;
background: transparent;
font: inherit;
color: inherit;
}
.note-footer {
display: flex;
align-items: center;
justify-content: space-between;
}
.meta {
font-size: 0.85rem;
opacity: 0.85;
}