-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtruth-table.css
More file actions
61 lines (52 loc) · 858 Bytes
/
truth-table.css
File metadata and controls
61 lines (52 loc) · 858 Bytes
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
body {
font-family: Arial, sans-serif;
padding: 20px;
max-width: 900px;
margin: auto;
}
.container {
max-width: 900px;
margin: 0 auto;
padding: 20px;
}
h1 {
font-size: 24px;
font-weight: bold;
margin-bottom: 16px;
}
.input-container {
display: flex;
gap: 10px;
margin-bottom: 20px;
}
input {
flex-grow: 1;
padding: 8px;
border: 1px solid #ccc;
border-radius: 4px;
}
button {
padding: 8px 16px;
background-color: #000;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
}
table {
width: 100%;
border-collapse: collapse;
margin-top: 20px;
}
th, td {
border: 1px solid #ddd;
padding: 8px;
text-align: center;
}
th {
background-color: #f2f2f2;
}
.error {
color: red;
margin-bottom: 20px;
}