-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
119 lines (118 loc) · 2.31 KB
/
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
*{
margin: 0;
padding: 0;
font-family: "Comic Sans MS", cursive, sans-serif;
}
body{
background-color: #fad0c9ff;
}
.navbar{
background-color:#6e6e6dff !important;
}
.top-body{
display: grid;
grid-template-rows: auto auto auto;
grid-row-gap: 14px;
justify-items: center;
background-color: #fad0c9ff !important;
border: none !important;
border-bottom: 1px solid #6e6e6dff !important;
padding-bottom: 36px;
}
.logo{
position: relative;
left: 60px;
color: white !important;
}
.clear-btn{
position: relative;
left: 500px;
background-color: rgb(224, 230, 227) !important;
color: #6e6e6dff !important;
border: none;
}
.new-btn, .save-btn{
grid-row: 2/3;
}
#new-btn{
background-color: #00539cff !important;
color: #fad0c9ff;
border: none;
}
#save-btn{
background-color: #6e6e6dff !important;
color: #fad0c9ff;
border: none;
}
#update-btn, #delete-btn, #back-btn{
background-color: #6e6e6dff !important;
color: #fad0c9ff;
border: none;
margin: 0 6px 0 6px;
}
.whole-body{
margin: 0px !important;
padding-bottom: 20px;
}
.about{
grid-row: 1/2;
margin-top: 26px;
color: #6e6e6dff;
}
.note-body{
display: grid;
grid-row: 3/4;
grid-template-rows: auto auto;
}
#title{
grid-row: 1/2;
height: 32px;
border: none;
border-bottom: 2px solid #fad0c9ff;
padding-left: 6px;
background-color: rgb(255, 236, 233);
border-top-left-radius: 4px;
border-top-right-radius: 4px;
}
::placeholder {
color: #ccc;
}
#note{
grid-row: 2/3;
border: none;
padding-left: 6px;
background-color: rgb(255, 236, 233);
border-bottom-left-radius: 4px;
border-bottom-right-radius: 4px;
}
.note-content{
height: 150px;
}
#green-btn{
background-color: #a8d5baff !important;
height: 26px;
margin: 0 6px 0 6px;
}
#pink-btn{
background-color: #d7a9e3ff !important;
height: 26px;
margin: 0 6px 0 6px;
}
#cyan-btn{
background-color: #8bbee8ff !important;
height: 26px;
margin: 0 6px 0 6px;
}
.color-btn{
margin-bottom: 26px;
}
.bottom-head{
padding-top: 32px;
}
#bottom-body{
grid-template-rows: 1fr 1fr 1fr 1fr;
grid-template-columns: 32.33% 32.33% 32.33%;
grid-column-gap: 4px;
grid-row-gap: 9px;
justify-content: center;
}