19 lines
316 B
CSS
Executable File
19 lines
316 B
CSS
Executable File
/* colors.css -- Controlling the colors and borders for Lab 4
|
|
* author: Nicholas Tamassia
|
|
*/
|
|
|
|
header {
|
|
background: #450084;
|
|
color: #f5f5f5;
|
|
border-bottom: solid #dacce6 1vh;
|
|
}
|
|
|
|
body {
|
|
background: #dfd2aa;
|
|
}
|
|
|
|
section {
|
|
background: #f4efe1;
|
|
border: solid black 3px;
|
|
border-radius: 1vh;
|
|
} |