-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1 parent
66525dd
commit b0c805b
Showing
2 changed files
with
112 additions
and
1 deletion.
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 |
---|---|---|
@@ -0,0 +1,101 @@ | ||
html, body { | ||
font-family: 'Comic Sans MS', cursive, sans-serif; | ||
background-color: #f0f8ff; | ||
color: #333; | ||
text-align: center; | ||
padding: 0; | ||
margin: 0; | ||
height: 100%; | ||
} | ||
|
||
|
||
header { | ||
position: sticky; | ||
top: 0px; | ||
padding: 20px; | ||
background-color: #ffb6c1; | ||
border-radius: 10px; | ||
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); | ||
z-index: 999; /* Ensure it stays on top of other content */ | ||
} | ||
|
||
header h1 { | ||
margin: 0; | ||
font-size: 2em; | ||
color: #333; | ||
} | ||
|
||
header p { | ||
margin: 10px 0 0; | ||
font-size: 1.2em; | ||
color: #666; | ||
} | ||
|
||
div { | ||
background-color: #fff; | ||
border-radius: 10px; | ||
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); | ||
padding: 20px; | ||
margin: 20px auto; | ||
max-width: 600px; | ||
} | ||
|
||
p { | ||
font-size: 1.2em; | ||
line-height: 1.6; | ||
} | ||
|
||
a { | ||
color: #ff69b4; | ||
text-decoration: none; | ||
} | ||
|
||
a:hover { | ||
text-decoration: underline; | ||
} | ||
|
||
input[type="file"] { | ||
display: block; | ||
margin: 20px auto; | ||
padding: 10px; | ||
border: 2px dashed #ff69b4; | ||
border-radius: 10px; | ||
background-color: #fff; | ||
cursor: pointer; | ||
} | ||
|
||
button { | ||
background-color: #ff69b4; | ||
color: #fff; | ||
border: none; | ||
padding: 10px 20px; | ||
border-radius: 10px; | ||
cursor: pointer; | ||
font-size: 1em; | ||
} | ||
|
||
button:hover { | ||
background-color: #ff1493; | ||
} | ||
|
||
#qrcode { | ||
margin-top: 20px; | ||
} | ||
|
||
footer { | ||
background-color: #ff69b4; | ||
color: #fff; | ||
text-align: center; | ||
padding: 10px 0; | ||
position: relative; | ||
width: 100%; | ||
bottom: 0; | ||
left: 0; | ||
box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.1); | ||
z-index: 1000; /* Ensure it stays on top */ | ||
} | ||
|
||
footer p { | ||
margin: 0; | ||
font-size: 1em; | ||
} |