mirror of
https://github.com/processing/processing4.git
synced 2026-02-03 13:49:18 +01:00
51 lines
749 B
CSS
51 lines
749 B
CSS
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
body {
|
|
padding-left: 20px;
|
|
padding-right: 20px;
|
|
font-family: "Processing Sans", sans-serif;
|
|
}
|
|
|
|
h1 {
|
|
margin-bottom: 0;
|
|
/* can't get the Semibold to work properly */
|
|
font-family: "Processing Sans", sans-serif;
|
|
font-size: 18px;
|
|
font-weight: normal;
|
|
}
|
|
|
|
p, td {
|
|
margin-bottom: 0;
|
|
font-size: 11px;
|
|
line-height: 12px;
|
|
}
|
|
|
|
table {
|
|
/*margin-top: 10px;*/
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
div.inset, p.inset, table.inset {
|
|
padding: 10px;
|
|
/* background-color: rgb(224, 253, 251); */
|
|
/* background-color: rgb(240, 240, 240); */
|
|
background-color: white;
|
|
}
|
|
|
|
a {
|
|
color: #2c7bb5;
|
|
text-decoration: none;
|
|
}
|
|
|
|
ul {
|
|
margin-left: 20px;
|
|
margin-right: 0px;
|
|
padding: 0;
|
|
}
|
|
|
|
#startButton {
|
|
margin-left: 50px;
|
|
} |