-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
109 lines (92 loc) · 1.69 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
109
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-image: linear-gradient(to bottom right, rgb(47, 30, 199), white) !important;
background-attachment: fixed;
}
.container {
width: 900px;
position:absolute;
top: 20%;
left: 50%;
transform: translate(-50%, -50%);
}
.header {
color: white;
font-weight: bold;
font-size: 20px;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
margin-bottom: 100px;
display: flex;
justify-content: center;
margin-top: 100px;
}
.note-input {
display: flex;
justify-content: center;
}
.note-box{
max-height: 20px;
}
#note-input-form {
width: 400px;
height: 50px;
padding: 15px;
font-size: larger;
}
#note-input-button {
align-self: center;
width: 30px;
height: 30px;
background-color: orange;
border-radius: 5px;
border-color: orange;
color: white;
position: relative;
left: -50px;
}
#note-box-items {
margin-left: 50px;
list-style-type: none;
}
.form-check {
display: flex;
align-items: center;
margin-block: 25px;
}
.form-check-label {
background-color: white;
color: black;
padding: 5px;
display: block;
width: 700px;
margin: 5px;
padding: 10px;
}
.form-check-label:hover{
background-color: gray;
}
.form-check-input {
height: 15px;
width: 15px;
}
.checkbox{
display: flex;
}
#check{
background-color: orange;
padding: 10px;
margin-left: 0;
}
#remove{
background-color: rgb(44, 160, 85);
padding: 10px;
margin-left: 0;
}
.form-check-label.checked {
text-decoration: line-through;
background-color: rgb(198, 198, 198);
}