-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathii_laba1.css
More file actions
executable file
·61 lines (49 loc) · 934 Bytes
/
Copy pathii_laba1.css
File metadata and controls
executable file
·61 lines (49 loc) · 934 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 {
width: 80%;
margin: 0px auto;
}
table {
border-collapse: collapse;
display: inline-block;
margin: 0px 30px;
vertical-align: top;
}
table > tbody > tr {
text-align: center;
vertical-align: middle;
}
table > tbody > tr > td {
border: 1px solid black;
width: 30px;
height: 30px;
}
table > tbody > tr > td.assigned {
font-family: 'Gravitas One', cursive;
font-style: normal;
font-weight: 400;
}
table > tbody > tr > td:nth-of-type(3n) {
border-right: 3px solid black;
}
table > tbody > tr > td:nth-of-type(3n + 1) {
border-left: 3px solid black;
}
table > tbody > tr:nth-of-type(3n) {
border-bottom: 3px solid black;
}
table > tbody > tr:first-child {
border-top: 3px solid black;
}
table > tbody > tr > td.hit {
background-color: green;
}
table > tbody > tr > td.fail {
background-color: red;
}
details > summary > h2 {
display: inline;
}
details > p {
text-indent: 10px;
text-align: justify;
}