26 lines
375 B
CSS
26 lines
375 B
CSS
/*
|
|
CSS file meant to represent an external (integrators) stylesheet and
|
|
help ensure that instant looks consistent across environments.
|
|
*/
|
|
|
|
button {
|
|
font-size: 50px;
|
|
height: 200px;
|
|
background-color: red;
|
|
}
|
|
|
|
input {
|
|
padding: 100px;
|
|
font-size: 50px;
|
|
height: 100px;
|
|
}
|
|
|
|
div {
|
|
padding: 3px;
|
|
}
|
|
|
|
p {
|
|
background-color: green;
|
|
margin: 10px;
|
|
}
|