-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
83 lines (83 loc) · 1.36 KB
/
style.css
File metadata and controls
83 lines (83 loc) · 1.36 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Inter", sans-serif;
}
.center {
display: flex;
align-items: center;
justify-content: center;
}
header {
padding: 2rem;
}
main {
flex-direction: column;
padding: 1rem;
}
#create-note {
background-color: inherit;
height: 3rem;
width: 4rem;
border-radius: 0.3rem;
margin-bottom: 2rem;
box-shadow: rgb(0 0 0 / 10%) 0px 4px 12px;
}
button:hover {
cursor: pointer;
opacity: 0.7;
}
.error {
border: 1px solid red;
}
li {
display: flex;
align-items: flex-start;
justify-content: center;
flex-direction: column;
padding: 0.5rem;
width: 70vw;
border-radius: 0.2rem;
margin-bottom: 1rem;
box-shadow: rgb(0 0 0 / 15%) 1.95px 1.95px 2.6px;
}
.text-area p {
font-size: 1.2rem;
padding: 0.4rem;
}
.note-topbar {
width: 100%;
display: flex;
align-items: center;
justify-content: space-between;
background-color: inherit;
border-bottom: 1px solid black;
}
.note-topbar span {
font-size: 0.7rem;
opacity: 0.9;
}
label:hover {
cursor: pointer;
opacity: 0.8;
}
.note-color {
width: 0.5rem;
border: none;
background-color: inherit;
visibility: hidden;
}
.note-topbar button {
background-color: inherit;
border: none;
outline: none;
}
.note-topbar button:hover {
cursor: pointer;
opacity: 0.8;
}
footer {
flex-direction: column;
padding: 2rem;
}