mirror of
https://github.com/abrendan/MicDropMessages.git
synced 2025-06-16 20:55:00 +02:00
Made adjustments to the padding when viewed on a smaller screen
This commit is contained in:
parent
7bd7e14910
commit
831834728d
@ -12,7 +12,7 @@
|
|||||||
<body onload = "onload()">
|
<body onload = "onload()">
|
||||||
<div id = "Main">
|
<div id = "Main">
|
||||||
<audio id = "Ding" src = "Ding.mp3"> </audio>
|
<audio id = "Ding" src = "Ding.mp3"> </audio>
|
||||||
<h1 id = "Title"> MicDropMessages V1.5 </h1>
|
<h1 id = "Title"> MicDropMessages V1.6 </h1>
|
||||||
<p>Welcome to MicDropMessages! This small webbased application allows you to chat with your friends anonymously! To start, enter your username and enter a chatroom.</p>
|
<p>Welcome to MicDropMessages! This small webbased application allows you to chat with your friends anonymously! To start, enter your username and enter a chatroom.</p>
|
||||||
<div id = "AccessPort">
|
<div id = "AccessPort">
|
||||||
<label id = "NameLabel"> Username </label>
|
<label id = "NameLabel"> Username </label>
|
||||||
|
@ -104,11 +104,16 @@ body.dark-mode .input {
|
|||||||
background-color:#000000;
|
background-color:#000000;
|
||||||
color:#ffffff;
|
color:#ffffff;
|
||||||
}
|
}
|
||||||
@media (max-width: 600px) {
|
@media (max-width: 800px) {
|
||||||
label {
|
label {
|
||||||
width: auto; /* Full width on narrow screens */
|
width: auto; /* Full width on narrow screens */
|
||||||
}
|
}
|
||||||
#Main {
|
#Main {
|
||||||
width: 100%; /* Full width on narrow screens */
|
width: 100%; /* Full width on narrow screens */
|
||||||
}
|
}
|
||||||
|
.container, .content, body {
|
||||||
|
padding-left: 20px; /* Increase the left padding */
|
||||||
|
padding-right: 20px; /* Increase the right padding */
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user