-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmainStyle.css
51 lines (44 loc) · 960 Bytes
/
mainStyle.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
table.mytable, table.mytable tr td{
border: 1px solid black;
}
table.mytable tr td{
padding: 4px;
}
table.mytable{
border-collapse:separate;
border-radius: 15px;
}
table.mytable tr:first-child td:first-child{
border-collapse:separate;
border-top-left-radius: 15px;
}
table.mytable tr:first-child td:last-child{
border-collapse:separate;
border-top-right-radius: 15px;
}
table.mytable tr:last-child td:first-child{
border-collapse:separate;
border-bottom-left-radius: 15px;
}
table.mytable tr:last-child td:last-child{
border-collapse:separate;
border-bottom-right-radius: 15px;
}
table.mytable tr:nth-child(even){
background-color : rgba(155,155,155,0.5);
}
table, td input{
width: 100%;
}
h1{
text-align: center;
}
em{
font-weight: bold;
}
#gameLogo{
display: block;
margin-left: auto;
margin-right: auto;
max-width: 75%;
}