-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.css
100 lines (91 loc) · 1.62 KB
/
index.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
#menu-icon {
width: 35px;
height: 35px;
position: absolute;
top: 10px;
right: 10px;
cursor: pointer;
/* animation-name:rotate; */
animation-duration: 0.25s;
animation-fill-mode: forwards;
}
@keyframes rotate-open {
0% {
transform: rotate(0);
}
100% {
transform: rotate(90deg);
}
}
@keyframes rotate-close {
0% {
transform: rotate(90deg);
}
100% {
transform: rotate(0);
}
}
#menu {
background-color: rgb(185, 136, 248);
border: 1px solid rgb(185, 136, 248);
color: black;
filter: opacity(0.9);
border-radius: 15px;
position: absolute;
top: 45px;
right: 45px;
text-align: left;
/* Invisible */
display: none;
}
select {
background-color: rgb(185, 136, 248);
font-size: medium;
border: none;
}
table {
padding: 8px;
}
td {
padding: 5px;
}
body {
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
sans-serif;
text-align: center;
margin: 0;
font-size: large;
transition: linear;
transition-duration: 0.5s;
}
.body-light {
background-color: rgb(228, 228, 228);
color: rgb(23, 23, 23);
}
.body-dark {
background-color: rgb(33, 33, 33);
color: white;
}
#notes {
width: 90%;
height: 80vh;
resize: none;
border-radius: 10px;
padding: 25px 15px;
border: none;
font-size: large;
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
sans-serif;
outline: none;
line-height: 30px;
}
.textarea-light {
background-color: white;
color: rgb(23, 23, 23);
}
.textarea-dark {
background-color: rgb(60, 59, 59);
color: white;
}