-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlight-mode.css
More file actions
138 lines (113 loc) · 2.35 KB
/
light-mode.css
File metadata and controls
138 lines (113 loc) · 2.35 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
#loader{
position: fixed;
width: 100%;
height: 100vh;
background: black url("loader.gif") no-repeat center;
z-index: 99999;
}
body{
font-family: 'Poppins', sans-serif;
background: #f0f8ff;
transition: 0.5s;
}
#nav_img{
height: 35px;
width: 50px;
padding: 0px 5px;
}
#erbtn{
cursor: pointer;
float: right;
margin-top: 5px;
margin-right: -40px;;
}
#dropdownMenuButton{
padding: 2px 5px;
margin-right: 8px;
}
#srch_1, #srch_2{
width: 160px;
cursor: pointer;
padding: 2px;
margin: 2px;
}
#dropdown_box{
padding: 0px;
background-color: rgb(177, 177, 177);
}
.typed, .typed1{
font-size : clamp(1.4rem, 4vw, 3rem);
}
#addTitle, #addTxt{
font-size: 1.2em;
}
.btn-secondary:not(:disabled):not(.disabled).active, .btn-secondary:not(:disabled):not(.disabled):active, .show>.btn-secondary.dropdown-toggle {
color: #fff;
background-color: #343a40;
border-color: #4e555b;
}
.noteCard{
font-size: 1.2em;
}
/* star div effect */
.toggle-card{
position: absolute;
top: 5px;
right: 5px;
color: black;
width: 25px;
height: 25px;
display: flex;
border-radius: 50%;
justify-content: center;
align-items: center;
cursor: pointer;
}
.show-star{
margin-top: 1px;
margin-left: 1px;
}
.star, .star-btn{
color: yellow;
}
/* star bth that show alll starred cards */
#toggle-show{
margin-top: -40px;
background: #212529;
color: white;
width: 25px;
height: 25px;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
cursor: pointer;
}
.noteCard, .inpBox{
box-shadow: 0 15px 25px rgba(0, 0, 0, 0.25);
background-color: #fff;
border-radius: 15px;
}
#themebtn{
background-color: #6c757d;
cursor: pointer;
width: 30px;
height: 30px;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
margin: 5px 10px;
}
#themebtn:before{
content: '\f186';
font-family: fontAwesome;
color: #fff;
}
#footer_text{
color: white;
margin: 0px;
font-size: 13px;
letter-spacing: 1.5px;
}