mirror of
https://github.com/bendtherules/github-actions-for-ci.git
synced 2026-08-18 22:02:04 +00:00
29 lines
326 B
CSS
29 lines
326 B
CSS
table {
|
|
border-collapse: collapse;
|
|
}
|
|
|
|
table td {
|
|
min-height: 100px;
|
|
min-width: 100px;
|
|
height: 100px;
|
|
width: 100px;
|
|
text-align: center;
|
|
|
|
font-size: 4em;
|
|
border: thin solid black;
|
|
}
|
|
|
|
table td:hover {
|
|
background: #CCCCCC;
|
|
}
|
|
|
|
table tr {
|
|
width: 300px;
|
|
height: 100px;
|
|
}
|
|
|
|
#app {
|
|
margin: auto;
|
|
width: 60%;
|
|
}
|