-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnotes.css
More file actions
116 lines (104 loc) · 1.72 KB
/
Copy pathnotes.css
File metadata and controls
116 lines (104 loc) · 1.72 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
115
116
.notes
{
width: 100%;
height: 95%;
display: flex;
flex-wrap: wrap;
}
.notesCard
{
width: 31vh;
min-height: 33vh;
height: fit-content;
display: flex;
flex-direction: column;
justify-content: space-between;
margin-left: 3%;
margin-top: 3%;
}
.noNotes
{
margin: auto;
font-size: 1.5em;
width: 40vw;
height: 20vw;
display: flex;
flex-direction: column;
cursor: pointer;
}
.noNotesOne
{
width: 18%;
height: 35%;
background-color: #68eb5c;
position: relative;
margin: auto;
margin-right: 47%;
}
.noNotesOne:before
{
width: 100%;
height: 100%;
top: 20%;
left: 20%;
content: "";
background-color: #f75a5b;
position: absolute;
}
.noNotesOne::after
{
width: 100%;
height: 100%;
top: 40%;
left: 40%;
content: "";
background-color: #ffe02c;
position: absolute;
}
.noNotesText
{
top: 30%;
}
.notesLoad
{
width: 20%;
height: 20%;
margin: auto;
}
.loader
{
margin: auto;
border: 5px solid #202124;
border-top: 5px solid #ea80fc;
border-radius: 50%;
width: 5vh;
height: 5vh;
animation: spin 2s linear infinite;
}
@keyframes spin
{
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
@media only screen and (orientation : portrait)
{
.notes
{
width: 100%;
height: 95%;
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.notesCard
{
width: 80vw;
min-height: 80vw;
height: fit-content;
display: flex;
flex-direction: column;
justify-content: space-between;
margin-left: 3%;
margin-top: 5%;
}
}