-
Notifications
You must be signed in to change notification settings - Fork 0
/
notes-style.css
138 lines (138 loc) · 3.36 KB
/
notes-style.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
129
130
131
132
133
134
135
136
137
138
body, html {
padding: 0;
margin: 0;
max-width: 100vw;
max-height: 100vh;
overflow-x: hidden;
overflow-y: hidden;
}
.screen{
height: 100vh;
width: 100vw;
}
.name{
color: black;
}
html {
/*background-color: rgba(104, 168, 224, 0.3);*/
}
#head-notes-wrapper {
padding: 5vh 0;
font-variant: small-caps;
letter-spacing: 0.3vw;
font-size: 1.5vw;
position: relative;
width: 85vw;
}
#notes-wrapper {
padding: 5vh 5vw;
position: relative;
height: 70vh;
overflow: auto;
width: 85vw;
}
*::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
border-radius: 10px;
background-color: #F5F5F5;
}
*::-webkit-scrollbar {
width: 8px;
height: 7px;
background-color: #F5F5F5;
}
*::-webkit-scrollbar-thumb {
border-radius: 10px;
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
background-color: #888;
}
.page-footer {
position: fixed;
bottom: 0;
left: 0;
width: 100vw;
z-index: 5;
max-height: 11vh;
height: 11vh;
overflow: hidden;
color: #f5dd42;
}
.page-footer>div>div>div>span {
font-size: 3vh;
vertical-align: middle;
}
.ham{position: absolute;left: 0;top: 0; z-index: 100;}
.ham1{position: absolute;right: 0;top: 0; z-index: 100;}
.ham2{position: absolute;right: 0.5vw;bottom: 11vh; z-index: 100;}
#add-notes-area {
background:#fdf8c8;
background-image: -webkit-linear-gradient(90deg, #d0a090 1px, #d0a090 1px), linear-gradient(#fdf8c8, #fdf8c8 24px, #ccd 24px, #ccd 25px, #fdf8c8 25px);
background-image: -moz-linear-linear-gradient(90deg, #d0a090 1px, #d0a090 1px), linear-gradient(#fdf8c8, #fdf8c8 24px, #ccd 24px, #ccd 25px, #fdf8c8 25px);
background-image: -ms-linear-gradient(90deg, #d0a090 1px, #d0a090 1px), linear-gradient(#fdf8c8, #fdf8c8 24px, #ccd 24px, #ccd 25px, #fdf8c8 25px);
background-image: -o-linear-gradient(90deg, #d0a090 1px, #d0a090 1px), linear-gradient(#fdf8c8, #fdf8c8 24px, #ccd 24px, #ccd 25px, #fdf8c8 25px);
background-image: linear-gradient(90deg, #d0a090 1px, #d0a090 1px), linear-gradient(#fdf8c8, #fdf8c8 24px, #ccd 24px, #ccd 25px, #fdf8c8 25px);
background-size: 2px 100%, 100% 25px;
background-position: 40px top, left 0px;
background-repeat:no-repeat, repeat;
line-height: 25px !important;
background-attachment: local;
height:90vh;
width:100%;
margin:0;
padding-top:3px;
padding-left:50px;
font-family:verdana;
font-family: Arial, Helvetica, Sans-serif;
font-size:large;
outline: none;
}
#add-notes-btn {
margin-top: 3vh;
}
.date-stamp {
font-weight: 300;
font-size: 1.8vh;
}
#view-notes-wrapper {
max-height: 57vh;
overflow: auto;
}
pre {
margin: 0;
margin-bottom: 15px;
}
.hover {
cursor: pointer;
}
#export_text.day{
padding: 5px;
background: white;
border: solid black 1px;
transition: all 1s;
}
#export_text:hover.day{
background: black;
color: white;
transition: all 1s;
}
#export_text.night{
padding: 5px;
color: white;
background: black;
border: solid white 1px;
transition: all 1s;
}
#export_text:hover.night{
background: white;
color: black;
transition: all 1s;
}
.switch label input[type=checkbox]:checked+.lever {
background-color: white;
}
.switch label input[type=checkbox]:checked+.lever:after {
background-color: black;
}
.switch label .lever {
margin: 0px 6px;
}