-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
120 lines (95 loc) · 1.75 KB
/
styles.css
File metadata and controls
120 lines (95 loc) · 1.75 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
h1 {
text-align: center;
color: white;
font-family: 'Lato', sans-serif;
background-color: #272727;
}
/* Google fonts */
@import url('https://fonts.googleapis.com/css?family=Orbitron');
@import url('https://fonts.googleapis.com/css?family=Pacifico&display=swap');
@import url('https://fonts.googleapis.com/css?family=Sigmar+One&display=swap');
body {
background-color: #121212 !important;
}
#clock {
font-family: 'Sigmar One', cursive;
color: #0f5e72;
font-size: 40px;
text-align: right;
padding-top: 40px;
padding-bottom: 40px;
margin-right: 40px;
}
#date {
font-family: 'Pacifico';
color: #0f5e72;
font-size: 50px;
text-align: right;
}
#positiveAffirmations {
font-family: Cambria;
color: white;
font-size: 11px;
text-align: right;
}
.corgiButton {
border-radius: 50%;
}
.corgiButton:hover {
cursor: pointer;
padding: 50px;
}
.corgiButton:active {
background-color: #133662;
box-shadow: 0 5p;
transform: translateY(4px);
}
#corgiButtonId {
color:white;
}
#homeButton {
color: black;
text-align: center;
}
#aboutUsButton {
color: black;
text-align: center;
}
#createAnAccountButton {
color: black;
text-align: center;
}
/* to do */
#todo-list{
color: white;
width: 300px;
overflow-y: scroll;
}
.todo-add-button{
color:grey;
border-radius: 20px;
border: 2px dashed grey;
padding: 7px 0 10px 0;
margin: 20px 10px 5px 10px;
transition: color 350ms, border-color 350ms;
width: 200px
}
.todo-add-button:hover{
color: white;
border-color: green;
}
.todo-add-text{
text-align: center
}
.todo-item{
display: grid;
grid-template-columns: 1fr 50px;
padding: 10px;
}
.todo-check{
text-align: right;
}
.todo-complete{
color: grey;
}
/* end of to do */