54 lines
714 B
CSS
54 lines
714 B
CSS
body {
|
|
background-color: lightsteelblue;
|
|
font-family: arial;
|
|
color: cadetblue;
|
|
/* background-image: url(Images/applications.jpg); */
|
|
background-size: contain;
|
|
background-attachment: fixed;
|
|
}
|
|
|
|
.NSI {
|
|
font-style: italic;
|
|
color: red
|
|
}
|
|
|
|
h1 {
|
|
text-align: center;
|
|
font-size: 7;
|
|
}
|
|
|
|
hr {
|
|
size: 2;
|
|
color: "#0000127";
|
|
}
|
|
|
|
h2 {
|
|
font-size: 5;
|
|
}
|
|
|
|
p {
|
|
text-align: justify;
|
|
}
|
|
|
|
ul {
|
|
list-style-type: square;
|
|
}
|
|
|
|
table {
|
|
width: 100%;
|
|
vertical-align: center;
|
|
}
|
|
|
|
tr {
|
|
align-self: center;
|
|
}
|
|
|
|
td {
|
|
align-content: center;
|
|
text-align: center;
|
|
}
|
|
|
|
.Main {
|
|
align-content: center;
|
|
text-align: center;
|
|
} |