-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfloatstyle.css
More file actions
79 lines (63 loc) · 1.37 KB
/
floatstyle.css
File metadata and controls
79 lines (63 loc) · 1.37 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
/* Import font. (Comics Sans kasi why not hahaha)*/
body {
font-family: 'Comic Sans MS', cursive, sans-serif;
overflow: hidden;
} /*Nice*/
::-webkit-scrollbar {display: none;}
/*Para mag center yun form*/
.todo {
display: flex;
justify-content: center;
}
.entire header {
font-size: 30px;
}
.todo-input {
padding:5px;
margin-left: auto;
margin-right: auto;
text-align: center;
font-size: 16px;
height: 20px;
width: 300px; /* Adjust this value as needed */
/*box-shadow: 2px 2px 10px rgba(0, 0, 0, 25);
background-color: #f4f4f4;*/
min-width: 200px;
border-color: white;
/*border-radius: 5px;*/
border:none;
outline: none;
border-bottom: 2px solid #aeaeae;
}
.todo-button{
flex: 1;
/*background-color: #ffffff;
margin-left: auto;
margin-right: auto;
text-align: center;
height: 30px;
width: 30px;
border-radius: 5px;
box-shadow: 2px 2px 10px rgba(0, 0, 0, 25);*/
cursor:pointer;
}
.undo-button{
flex: 1;
cursor:pointer;
}
.task {
cursor:alias;
user-select: none;
padding: 7px;
margin-bottom: 10px;
background-color:#ffff88;
display:inline-block;
box-shadow: 1px 2px 5px #000000;
}
.columns {
height: 220px;
width: 400px;
position: relative;
border-color: blueviolet;
border-width: 5px;
}