-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
133 lines (131 loc) · 2.29 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
* {
margin: 0;
padding: 0;
}
body {
background-color: black;
}
ul {
display: flex;
flex-direction: row;
}
li {
list-style: none;
}
nav ul {
justify-content: flex-end;
margin-right: 10px;
}
nav ul li {
padding: 15px 20px;
}
nav ul li a {
text-decoration: none;
color: white;
font-family: "Lucida Sans Unicode";
font-weight: 500;
}
#tasks {
background-color: white;
padding: 40px;
}
#tasks #head ul {
justify-content: center;
}
#tasks #bod ul {
justify-content: center;
}
#tasks #head ul li {
width: 100px;
height: 30px;
text-align: center;
margin-left: 80px;
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
margin-bottom: 10px;
}
#tasks #bod ul li {
width: 100px;
height: 30px;
text-align: center;
margin-left: 80px;
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
margin-top: 10px;
margin-bottom: 10px;
}
p {
text-align: center;
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
padding: 30px 40px;
color: dimgrey;
}
button {
margin-top: 20px;
background-color: white;
border: 1px red solid;
color: red;
padding: 6px;
}
button a {
color: red;
text-decoration: none;
}
h1 {
color: white;
font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
"Lucida Sans Unicode", Geneva, Verdana, sans-serif;
text-align: center;
font-weight: normal;
margin: 20px;
}
#item {
margin-top: 30px;
padding-left: 28vw;
}
#form {
background-color: white;
display: flex;
flex-direction: column;
padding: 30px 40px;
font-family: Arial, Helvetica, sans-serif;
width: 300px;
}
#form button {
padding: 10px;
}
select {
background-color: white;
border: 1px black solid;
border-radius: 10px;
height: 30px;
width: 250px;
}
input {
background-color: white;
border: 1px black solid;
border-radius: 10px;
height: 30px;
width: 250px;
}
#form * {
margin-top: 5px;
margin-bottom: 5px;
}
#black {
background-color: black;
padding: 30px 40px;
margin: 50px 0px;
display: none;
}
#footer {
color: black;
font-family: Ubuntu Mono;
font-size: 1.3em;
}
span {
animation: blinker 1s linear infinite;
}
@keyframes blinker {
50% {
opacity: 0;
}
}