generated from cis3296f22/project-template
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #17 from cis3296s24/join_styling
Join CSS Styling
- Loading branch information
Showing
3 changed files
with
48 additions
and
7 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,18 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<link href="joinStyles.css" rel="stylesheet" type="text/css" /> | ||
<title>Receiptify Join Session</title> | ||
</head> | ||
<body> | ||
<h1>Enter SessionID:</h1> | ||
<form action="/submit" method="get"> <label for="sessionID">Your SessionID:</label> | ||
<input type="text" id="sessionID" name="sessionID"><br> | ||
<input type="submit" value="Submit"> | ||
</form> | ||
<h1 id="join-session-title">Receiptify</h1> | ||
<div id="join-session"> | ||
<h2 id="join-session-text">Enter Session ID:</h2> | ||
<form action="/submit" method="get"> | ||
<input type="text" id="join-session-input" name="sessionID"><br> | ||
<input type="submit" id="join-session-btn" value="Submit"> | ||
</form> | ||
</div> | ||
|
||
</body> | ||
</html> |
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,36 @@ | ||
#join-session-title { | ||
font-family: Inter, 'Helvetica Neue', sans-serif; | ||
font-weight: 600; | ||
font-size: 3rem; | ||
margin: 1rem 0rem 4rem .25rem /* top right bottom left */ | ||
} | ||
|
||
#join-session-text { | ||
font-size: 2rem; | ||
font-family: Inter, 'Helvetica Neue', sans-serif; | ||
margin: 1rem 0rem 3rem .25rem; | ||
} | ||
|
||
#join-session { | ||
text-align: center; | ||
} | ||
|
||
#join-session-input { | ||
font-family: Inter, 'Helvetica Neue', sans-serif; | ||
font-size: 1rem; | ||
padding: 0.5rem 1rem 0.5rem 1rem | ||
} | ||
|
||
#join-session-btn { | ||
margin: 2rem 0rem 0rem 0rem; | ||
text-decoration: none; | ||
padding: 0.5rem 1rem 0.5rem 1rem; | ||
background-color: #1db954; | ||
font-size: 1.5rem; | ||
cursor: pointer; | ||
border-width: thin; | ||
border-radius: 1rem; | ||
color: white; | ||
font-family: 'Helvetica Neue', Helvetica, Geneva, Tahoma, sans-serif; | ||
|
||
} |