-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
60 lines (52 loc) · 1.04 KB
/
style.css
File metadata and controls
60 lines (52 loc) · 1.04 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
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap');
body{
font-family: Poppins, Helvetica, sans-serif;
font-size: larger;
box-sizing: border-box;
margin: 15px;
background-image: url(/double-bubble-dark.png);
color: white;
/* background-size: cover; */
}
.pending-table{
/* border: 2px solid white; */
position: relative;
}
#addQuest{
background-color: teal;
border:none;
padding: 10px;
border-radius: 10%;
position: absolute;
right: 0;
}
#addQuest:hover{
background-color: tomato;
padding:10px 20px;
}
.pending-table,td{
padding-right: 10px;
}
#quest{
font-size: x-large;
padding-right: 10rem;
}
.todo{
display: grid;
grid-template-columns: repeat(auto-fit,minmax(40rem,1fr));
justify-items: center;
grid-template-rows: auto;
}
.completedTable{
position: relative;
}
#clearButton{
padding:10px;
position:absolute;
right: 0;
top: 1;
}
#clearButton:hover{
background-color: teal;
border: none;
}