-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
109 lines (95 loc) · 2.38 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
body, html {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
}
header {
text-align: center;
padding: 20px;
background-color: #f0f0f0;
}
.logo {
width: 100px; /* Adjust size as needed */
}
h1 {
margin: 10px 0;
}
h2 {
margin: 0;
font-weight: normal;
color: #666;
}
.legend {
display: flex;
justify-content: center;
margin-top: 20px;
}
.legend .color {
width: 20px;
height: 20px;
border: 1px solid #000;
display: inline-block;
margin-right: 5px;
}
.yellow { background-color: #fdfd86; }
.blue { background-color: #add8e6; }
.pink { background-color: #ffb6c1; }
.green { background-color:#9FD784; }
.container {
display: flex;
justify-content: space-between;
width: 100%;
padding: 20px;
box-sizing: border-box;
}
.column {
flex: 1;
padding: 10px;
}
.header {
background-color: #FFFFFF;
width: 100%;
padding: 10px;
box-shadow: 2px 2px 4px rgba(0,0,0,0.2);
font-family: 'Comic Sans MS', 'Comic Sans', cursive; /* For that handwritten look */
word-wrap: break-word;
}
.subheader {
width: 100%;
padding: 10px;
font-family: 'Comic Sans MS', 'Comic Sans', cursive; /* For that handwritten look */
}
.post-it {
background-color: #fdfd86; /* Light yellow */
margin-bottom: 20px;
padding: 10px;
box-shadow: 2px 2px 4px rgba(0,0,0,0.2);
transform: rotate(0deg); /* Slight rotation */
border: 1px solid #ffed85;
font-family: 'Comic Sans MS', 'Comic Sans', cursive; /* For that handwritten look */
max-width: 200px; /* Adjust as needed */
word-wrap: break-word;
}
.post-it-blue {
background-color: #A7CDF5; /* Light blue */
margin-bottom: 20px;
padding: 10px;
box-shadow: 2px 2px 4px rgba(0,0,0,0.2);
transform: rotate(0deg); /* Slight rotation */
border: 1px solid #8DC1F8;
font-family: 'Comic Sans MS', 'Comic Sans', cursive; /* For that handwritten look */
max-width: 200px; /* Adjust as needed */
word-wrap: break-word;
}
.post-it-pink {
background-color: #FFD5E4; /* Light blue */
margin-bottom: 20px;
padding: 10px;
box-shadow: 2px 2px 4px rgba(0,0,0,0.2);
transform: rotate(0deg); /* Slight rotation */
border: 1px solid #F9B2CB;
font-family: 'Comic Sans MS', 'Comic Sans', cursive; /* For that handwritten look */
max-width: 200px; /* Adjust as needed */
word-wrap: break-word;
}