-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathnote.css
More file actions
130 lines (109 loc) · 1.82 KB
/
note.css
File metadata and controls
130 lines (109 loc) · 1.82 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
.content {
background-color: #CCCCCC;
}
.money-box {
text-align: center;
margin: 10px;
margin-top: 50px;
margin-bottom: 50px;
padding: 10px;
font-size: 30px;
font-weight: bold;
background-color: white;
border: solid;
border-color: black;
}
.main {
background-color: white;
}
.edit-content {
background-color: white;
}
.day {
font-size: 25px;
width: 90%;
margin-left: auto;
margin-right: auto;
margin-top: 40px;
margin-bottom: 40px;
}
.row-1 {
background-color: #9FC5F8;
border: solid;
border-color: black;
}
.row-2 {
background-color: #DDDDDD;
border: solid;
border-color: black;
border-top: 0;
}
.icon {
color: #073763;
text-align: center;
font-size: 50px;
font-weight: bold;
}
.month-year {
color: #073763;
font-weight: bold;
}
.text-font {
font-size: 25px;
}
.info {
margin: 40px 0px;
border-top: 2px solid black;
}
.info-icon {
font-size: 50px;
text-align: right;
margin: 30px 0px;
}
.btn-info {
background-color: #DDDDDD;
border: none;
color: black;
font-size: 30px;
}
.btn-info:hover {
background-color: #DDDDDD;
color: black;
}
.btn-info:focus {
background-color: #DDDDDD;
color: black;
}
.btn-close {
font-size: 25px;
}
.btn-edit {
background-color: #2B78E4;
border: solid 1px;
color: white;
border-color: black;
box-shadow: 3px 3px black;
margin: 10px 0px;
}
.btn-delete {
background-color: #CF2A27;
border: solid 1px;
color: white;
border-color: black;
box-shadow: 3px 3px black;
margin: 10px 0px;
}
.left {
text-align: left;
}
.right {
text-align: right;
}
.green {
color: green;
font-weight: bold;
}
.red {
color: red;
font-weight: bold;
}