-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
127 lines (107 loc) · 1.94 KB
/
main.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
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Arial, Helvetica, sans-serif;
line-height: 1.4;
}
a {
color: #333;
text-decoration: none;
}
body {
background-color: #0cbaba;
background-image: linear-gradient(315deg, #0cbaba 0%, #380036 74%);
background-size: cover;
background-position: center;
min-height: 100vh;
padding: 5px;
}
/* To-Dos */
.container {
min-width: 400px;
max-width: 400px;
margin: 0 auto;
}
/* Add Note */
.addNote {
display: grid;
grid-template-columns: 1fr 10fr 1fr;
margin-bottom: 2px;
padding: 3%;
color: #222;
font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
"Lucida Sans Unicode", Geneva, Verdana, sans-serif;
border-radius: 1%;
}
.addNote h1 {
font-size: 18px;
font-weight: 800;
}
.addNote .important {
cursor: pointer;
border: none;
background: none;
}
.addNote .addtext {
font-size: 18px;
font-weight: 400;
border: none;
background: none;
}
/* To-Do Item */
.note {
display: grid;
grid-template-columns: 10fr 1fr;
margin-bottom: 2px;
padding: 3%;
color: #222;
font-family: "Lucida Sans", sans-serif;
border-radius: 1%;
}
.note input {
font-size: 18px;
font-weight: 400;
text-align: left;
border: none;
background: none;
}
.note .delete {
cursor: pointer;
border: none;
background: none;
}
.note .edit {
cursor: pointer;
border: none;
background: none;
}
/* color css */
.colorDiv {
display: grid;
grid-template-columns: 1fr 11fr;
padding: 3%;
color: #222;
font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
"Lucida Sans Unicode", Geneva, Verdana, sans-serif;
border-radius: 1%;
align-items: center;
}
.colorDiv h1 {
font-size: 16px;
font-weight: 600;
justify-self: center;
}
.colors {
padding-left: 1%;
padding-right: 1%;
}
.colors button {
cursor: pointer;
width: 30px;
height: 30px;
border-radius: 50%;
border: 1px solid #aaa;
}