-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
77 lines (59 loc) · 920 Bytes
/
styles.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
.taskPending {
cursor: pointer;
font-family: monospace;
}
.taskDone {
cursor: pointer;
font-family: monospace;
text-decoration: line-through;
}
.darkTheme {
background-color: #333333;
}
h1 {
color: white;
text-align: center;
font-family: monospace;
}
#mainDiv , #secondDiv {
display: flex;
align-items: center;
justify-content: center;
}
.input {
width: 200px;
margin-top: 15px;
margin-bottom: 15px;
}
.input2 {
width: 200px;
margin-right: 76px;
margin-left: 76px;
font-family: monospace;
}
.input1 {
width: 200px;
margin-left: 35px;
font-family: monospace;
}
#userInput {
width: 510px;
font-family: monospace;
}
#thirdDiv {
width: 750px;
margin-left: auto;
margin-right: auto;
border-style: solid;
background-color: #999999;
}
.newDiv2 {
width: auto;
padding: 5px;
display: inline-block;
align-self: flex-end;
}
.newDiv1 {
margin-right: 30px;
margin-bottom: 10px;
}