summaryrefslogtreecommitdiff
path: root/Lab01/style.css
diff options
context:
space:
mode:
Diffstat (limited to 'Lab01/style.css')
-rw-r--r--Lab01/style.css57
1 files changed, 57 insertions, 0 deletions
diff --git a/Lab01/style.css b/Lab01/style.css
new file mode 100644
index 0000000..cc34197
--- /dev/null
+++ b/Lab01/style.css
@@ -0,0 +1,57 @@
+body{
+ padding: 0;
+ margin: 5%;
+ font-family: openSans, sans-serif;
+ color: #ffffff;
+ background: #2a2525;
+}
+
+.header{
+ text-align: center;
+ margin: 0;
+ padding: 5px 5px;
+ color: #f94413;
+}
+
+nav{
+ text-align: center;
+}
+nav ul{
+ margin: 0;
+ list-style-type: none;
+ padding: 5px;
+}
+nav li {
+ display: inline-block;
+ margin: 2px;
+ padding: 2px;
+}
+
+a{
+ text-decoration: none;
+ color: rgb(26, 202, 237);
+}
+
+a:hover{
+ text-decoration: underline;
+}
+
+p {
+ line-height: 1.25;
+}
+
+td {
+ padding-left: 20px;padding-right: 20px;
+}
+
+.section{
+ padding: 25px;
+}
+
+pre{
+ padding: 10px;
+ border-radius: 10px;
+ white-space: pre-wrap;
+ word-wrap: break-word;
+ text-align: justify;
+}