-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3251713
commit 64a65f6
Showing
4 changed files
with
87 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
@page | ||
@model WinCCOAOutsideInfoRepo.Pages.SharedPointerModel | ||
@{ | ||
ViewData["Title"] = "Introduction to Shared Pointers"; | ||
} | ||
|
||
<style> | ||
body { | ||
font-family: Arial, sans-serif; | ||
margin: 20px; | ||
} | ||
h1 { | ||
color: #4a90e2; | ||
border-bottom: 2px solid #e6e6e6; | ||
padding-bottom: 10px; | ||
} | ||
h3, h4, h5 { | ||
color: #4a90e2; | ||
} | ||
form { | ||
background-color: #f5f7f9; | ||
padding: 20px; | ||
border-radius: 8px; | ||
margin-top: 20px; | ||
margin-bottom: 20px; | ||
} | ||
label { | ||
display: block; | ||
margin-top: 10px; | ||
color: #4a90e2; | ||
} | ||
input[type="text"] { | ||
padding: 8px 12px; | ||
border-radius: 4px; | ||
border: 1px solid #ccc; | ||
width: 100%; | ||
box-sizing: border-box; | ||
} | ||
input[type="button"] { | ||
margin-top: 20px; | ||
background-color: #4a90e2; | ||
color: white; | ||
padding: 10px 15px; | ||
border: none; | ||
border-radius: 4px; | ||
cursor: pointer; | ||
transition: background-color 0.3s; | ||
} | ||
input[type="button"]:hover { | ||
background-color: #357ab7; | ||
} | ||
pre { | ||
background-color: #e6e6e6; | ||
padding: 10px; | ||
border-radius: 4px; | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
using Microsoft.AspNetCore.Mvc; | ||
using Microsoft.AspNetCore.Mvc.RazorPages; | ||
|
||
namespace WinCCOAOutsideInfoRepo.Pages | ||
{ | ||
public class SharedPointerModel : PageModel | ||
{ | ||
public void OnGet() | ||
{ | ||
} | ||
} | ||
} |