forked from maxifaxipaxi-new/tasksmanager
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
85 lines (73 loc) · 1.47 KB
/
styles.css
File metadata and controls
85 lines (73 loc) · 1.47 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
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
background-color: #f5f5f7;
margin: 0;
padding: 20px;
text-align: center;
}
.container {
max-width: 600px;
margin: auto;
background: white;
padding: 20px;
border-radius: 16px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
h1 {
color: #333;
}
input, select, button {
width: 100%;
margin: 10px 0;
padding: 10px;
border-radius: 8px;
border: 1px solid #ccc;
font-size: 16px;
}
button {
background: #007aff;
color: white;
border: none;
cursor: pointer;
}
.task {
padding: 15px;
border-radius: 8px;
margin-top: 10px;
text-align: left;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.bug { background: #ff3b30; color: white; }
.server { background: #ffcc00; color: black; }
.feature { background: #34c759; color: white; }
.status {
display: flex;
justify-content: space-between;
margin-top: 10px;
}
.done {
opacity: 0.5;
text-decoration: line-through;
}
.in_arbeit {
border: 2px solid #007aff; /* Blaue Umrandung für "In Arbeit" */
}
.header {
display: flex;
justify-content: flex-end;
padding: 10px;
}
.dev-intern {
background: #ff2d55;
color: white;
border: none;
padding: 10px 15px;
border-radius: 8px;
cursor: pointer;
}
footer {
text-align: center;
padding: 15px;
background: #e5e5ea;
margin-top: 20px;
}