Skip to content

Commit

Permalink
Merge pull request #4 from ayihuang/styling
Browse files Browse the repository at this point in the history
Styling
  • Loading branch information
ayihuang authored Aug 5, 2024
2 parents 5b183a6 + d9137fd commit 403b8a1
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 7 deletions.
1 change: 1 addition & 0 deletions Demonstrations.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale+1.0">
<link rel="stylesheet" href="styles.css" />
<title>Demonstrations</title>
</head>
<body>
Expand Down
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale+1.0">
<title>Document</title>
<title>Skatelligence</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
Expand All @@ -11,6 +11,6 @@ <h1>Skatelligence</h1>
<a href="/Demonstrations.html">Demonstrations</a>
<a href="/technDetails.html">Technical Details</a>
<a href="/relatedLinks.html">Related Links</a>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>
<p>Test 123 Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>
</body>
</htmlf>
1 change: 1 addition & 0 deletions relatedLinks.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale+1.0">
<link rel="stylesheet" href="styles.css" />
<title>Related Links</title>
</head>
<body>
Expand Down
22 changes: 17 additions & 5 deletions styles.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
body{
margin:0;
background : pink;
text-align : center;
}
body {
margin: 10;
background: rgb(112,45,189);
background: linear-gradient(90deg, rgba(112,45,189,1) 0%, rgba(75,28,186,1) 52%, rgba(23,13,112,1) 100%);
color: white;
font-family: Verdana, sans-serif;
/* Default link color */
a{
color: white; /* Change to your desired color */
}

/* Visited link color */
a:visited {
color: navajowhite; /* Change to your desired color */
}

}
1 change: 1 addition & 0 deletions technDetails.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale+1.0">
<link rel="stylesheet" href="styles.css" />
<title>Technical Details</title>
</head>
<body>
Expand Down
1 change: 1 addition & 0 deletions whoWeAre.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale+1.0">
<link rel="stylesheet" href="styles.css" />
<title>Who We Are</title>
</head>
<body>
Expand Down

0 comments on commit 403b8a1

Please sign in to comment.