-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyles.css
60 lines (51 loc) · 1.03 KB
/
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
html {
font-family: Arial;
}
* {
padding: 5px !important;
border-radius: 10px !important;
}
.container {
display: grid;
grid-template-columns: 1fr;
height: 100vh;
width: 100%;
text-align: center;
justify-content: center;
justify-items: center;
}
.container table {
margin: 0 auto;
border-collapse: collapse;
width: 100%;
white-space: nowrap;
background-color: rgba(239, 239, 239, 0.5);
}
.container td {
padding: 8px;
white-space: nowrap;
text-align: left;
}
.container input[type="submit"] {
width: 300px;
width: 100%;
box-sizing: border-box;
}
.container_eintragen input[type="text"] {
width: 180px;
box-sizing: border-box;
}
.container_eintragen {
width: 100%;
max-width: 1000px;
margin: 0 auto;
overflow-x: hidden;
box-sizing: border-box;
}
td:nth-child(5) input[type="checkbox"] {
margin: 0 auto;
display: block;
}
td:nth-child(4) {
text-align: center;
}