mirror of
https://github.com/nasa/trick.git
synced 2025-06-23 17:17:34 +00:00
56 lines
1001 B
CSS
56 lines
1001 B
CSS
html{background-color: white;
|
|
font-family: sans-serif;
|
|
}
|
|
|
|
|
|
div {
|
|
background-image: linear-gradient(#afafff, white);
|
|
}
|
|
th {border: 2px solid black;
|
|
text-align: center;
|
|
}
|
|
|
|
tr:nth-child(even){background-color: pink;
|
|
}
|
|
|
|
th, td{width: 50%; text-align: center;}
|
|
table{border-collapse: collapse;
|
|
width: 50%;
|
|
}
|
|
h1{ text-align: center}
|
|
h2{width: 50%; text-align: center}
|
|
p{width: 50%;}
|
|
|
|
/* button{float:left;border:1px solid black; width: 10px;} */
|
|
/*button{height: 50%; width: 50%;display:inline-block;}*/
|
|
|
|
|
|
/* .parent{display: flex; flex-flow: row nowrap; justify-content: space-around; }
|
|
|
|
/* Splitting screen in half
|
|
.side{
|
|
height: 100%;
|
|
width: 50%;
|
|
position: fixed;
|
|
}
|
|
.left {
|
|
left: 0;
|
|
background-color: red;
|
|
}
|
|
|
|
.right {
|
|
right: 0;
|
|
background-color: pink;
|
|
}
|
|
*/
|
|
button{
|
|
border: double black;
|
|
width: 50%;
|
|
font-size:larger;
|
|
justify-content: center;
|
|
background-color: lightskyblue;
|
|
/* display:flex; flex-direction: row; padding: 10%; */
|
|
}
|
|
|
|
|