diff options
author | Saumit Dinesan <justsaumit@protonmail.com> | 2023-08-10 17:04:42 +0530 |
---|---|---|
committer | Saumit Dinesan <justsaumit@protonmail.com> | 2023-08-10 17:04:42 +0530 |
commit | defb19e922bb09e52c495a9393f35479d48b1203 (patch) | |
tree | d74ecaff185d12e0a2e0af2b7650306443c3753f /Lab01/style.css |
Lab01: Create Basic Portfolio website w table
Diffstat (limited to 'Lab01/style.css')
-rw-r--r-- | Lab01/style.css | 57 |
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;
+}
|