-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathstyle.css
93 lines (79 loc) · 1.34 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
/* Universal Styles */
body {
margin: 0px;
background-color: whitesmoke;
font-family: 'Rock Salt', cursive;
text-align: center;
}
.secondary-background {
background-color: snow;
}
.tagline {
font-family: 'Quicksand', sans-serif;
color: lightslategrey;
line-height: 125px;
}
/* Header */
h1 {
margin: 0;
background-color: steelblue;
line-height: 100px;
color: khaki;
}
h2 {
margin: 10px;
}
/* App Container */
.container {
border: 2px solid snow;
display: flex;
}
/* To Do Section */
.week {
flex-grow: 3;
flex-direction: column;
}
.row {
min-height: 200px;
display: flex;
flex-wrap: wrap;
justify-content: space-around;
align-items: center;
}
.square {
width: 125px;
height: 125px;
padding: 10px;
display: flex;
justify-content: center;
align-items: center;
}
.day.square {
background-color: steelblue;
border: 1px solid white;
}
.task.square {
background-color: khaki;
border: 1px solid white;
}
.task p {
font-family: 'Quicksand', sans-serif;
font-weight: 700;
font-size: 12px;
}
/* Reminders */
.reminders {
background-color: khaki;
flex-grow: 2;
}
.reminders h3 {
width: 100%;
margin: 10px;
color: black;
line-height: 90px;
font-size: 24px;
}
/* Footer */
footer {
font-size: 24px;
}