forked from janmichalik/CriticalPathMethod
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
115 lines (110 loc) · 2.06 KB
/
style.css
File metadata and controls
115 lines (110 loc) · 2.06 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
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
body {
margin: 0;
background-color: #F0F0F0;
font-family: "Consolas", "Ubuntu Mono", "Courier New", "Courier", monospace;
font-size: 14px;
}
button {
margin-top: 3px;
font-family: "Consolas", "Courier New";
}
hr {
border: 1;
border-style: solid;
border-color: #F0F0F0;
}
input[type=text], input[type=number] {
margin: 3px;
border: 0;
background-color: #F0F0F0;
width: 50px;
font-family: "Consolas", "Courier New";
margin-right: 10px;
}
input[type=button] {
font-family: "Consolas", "Courier New";
}
nav {
margin-bottom: 20px;
text-align: center;
}
table {
margin-bottom: 20px;
border-collapse: collapse;
display: inline-table;
margin-left: 20px;
background-color: #E7F8F1;
box-shadow: 2px 2px 2px silver;
margin-right: 20px;
}
table td, tr {
border: 1px solid #3CBC8D;
padding-left: 5px;
padding-right: 5px;
}
.box {
margin: 20px;
padding: 10px;
background-color: white;
border-radius: 5px;
box-shadow: 3px 3px 3px silver;
margin-right: 20px;
}
.content {
display: table;
margin: 0 auto;
}
.link {
text-decoration: none;
color:white;
}
.mmenu {
margin-right: 20px;
background-color: #3CBC8D;
color:white;
cursor: pointer;
padding: 3px;
border-radius: 5px;
box-shadow: 3px 3px 3px silver;
}
.mmenu:hover {
background-color: #2D8C68;
}
.title {
background-color: white;
font-size: 26px;
text-align: center;
margin-bottom: 20px;
box-shadow: 3px 3px 3px silver;
}
.task-cards-grid {
display: grid;
grid-template-columns: repeat(3, 1fr); /* Ensure three columns */
gap: 10px;
}
.task-card {
margin: 10px;
padding: 10px;
background-color: #E7F8F1;
border: 1px solid #3CBC8D;
border-radius: 5px;
box-shadow: 2px 2px 2px silver;
display: grid;
grid-template-rows: auto;
gap: 5px;
}
#task_cards_container button {
margin: 20px auto;
padding: 10px 20px;
background-color: #3CBC8D;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
font-family: "Consolas", "Courier New";
display: block;
box-shadow: 2px 2px 2px silver;
}
#task_cards_container button:hover {
background-color: #2D8C68;
}