-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
72 lines (57 loc) · 933 Bytes
/
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
*{
box-sizing: border-box;
margin: 0;
padding: 0;
}
body{
background-color: #edede9;
color: black;
}
.main-card-body{
padding: 30px;
}
.notes-card{
border: 1px solid black;
min-height: 200px;
}
.notes-card:hover{
transform: translateY(-8px);
transition: all 0.2s ease;
cursor: pointer;
}
.notes-heading{
font-size: 16px;
font-weight: 700;
text-transform: uppercase;
}
.notes-text{
line-height: 18px;
}
.btn{
border-radius: 14px;
font-weight: 500;
}
.color-1{
background-color: #ffc300;
color:black;
}
.color-2{
background-color: #ff006e;
color: white;
}
.color-3{
background-color: #1e6091;
color: white;
}
.color-4{
background-color: #ef233c;
color: white;
}
.date{
display: flex;
justify-content: space-between;
padding: 10px;
font-size: 0.6rem;
font-weight: 700;
text-transform: uppercase;
}