Merge pull request #328 from yusi1/pullrequest

Modification of the login screen.
This commit is contained in:
grassmunk 2024-02-03 08:34:13 -08:00 committed by GitHub
commit ab3eb1ebf7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 31 additions and 16 deletions

View File

@ -8,8 +8,8 @@ html, body {
body { body {
-webkit-user-select: none; -webkit-user-select: none;
font-family: 'Sans-Serif'; font-family: 'Less Perfect DOS VGA';
font-size: 8pt; font-size: 12pt;
color: white; color: white;
text-shadow: 0 0 0; text-shadow: 0 0 0;
} }
@ -63,8 +63,8 @@ box-shadow: inset -1px -1px 0px 0px rgba(128,128,128,1);
.box-inner .content { .box-inner .content {
margin: auto; margin: auto;
padding: 20px 2px; padding: 20px 2px;
font-size: 10pt; font-size: 12pt;
font-family: 'Sans-Serif'; font-family: 'Less Perfect DOS VGA';
display: inline-block; display: inline-block;
width: 60%; width: 60%;
@ -72,23 +72,37 @@ box-shadow: inset -1px -1px 0px 0px rgba(128,128,128,1);
button, button,
button:hover { button:hover {
padding: 5px;
width: 100%; width: 100%;
font-size: 10pt; font-size: 10pt;
font-family: 'Sans-Serif'; font-family: 'Less Perfect DOS VGA';
display: inline-block; display: inline-block;
background-color: #c0c0c0; padding: 4px;
border-radius: 1px;
border-width: 2px;
color: black;
background: silver;
}
button {
border-style: outset;
border-color: buttonface;
border-right-color: #424242;
border-bottom-color: #424242;
}
button:hover {
border: 2px inset #fff;
box-shadow: -1px -1px #000;
} }
.header { .header {
padding: 0px; padding: 0px;
width: 548px; width: 548px;
border: 2px solid #000080; border: 2px solid #000080;
font-size: 8pt; font-size: 12pt;
text-align: left; text-align: left;
font-family: 'Sans-Serif'; font-family: 'Less Perfect DOS VGA';
font-weight: bold; font-weight: normal;
background-color: #000080; background-color: #000080;
color: white; color: white;
text-shadow: 0 0 0; text-shadow: 0 0 0;
@ -109,7 +123,7 @@ hr {
} }
#clock-widget span { #clock-widget span {
font: 'Sans-Serif'; font: 'Less Perfect DOS VGA';
text-shadow: none; text-shadow: none;
font-color: white; font-color: white;
color: white; color: white;

View File

@ -321,7 +321,7 @@ button,
html input[type="button"], /* 1 */ html input[type="button"], /* 1 */
input[type="reset"], input[type="reset"],
input[type="submit"] { input[type="submit"] {
-webkit-appearance: button; /* 2 */ /* webkit-appearance: button; /* 2 */
cursor: pointer; /* 3 */ cursor: pointer; /* 3 */
} }

Binary file not shown.

Before

Width:  |  Height:  |  Size: 547 B

After

Width:  |  Height:  |  Size: 785 B

View File

@ -7,19 +7,20 @@
<link rel="stylesheet" type="text/css" href="css/layout.css" /> <link rel="stylesheet" type="text/css" href="css/layout.css" />
</head> </head>
<body oncontextmenu="return false;"> <body oncontextmenu="return false;">
<div id="box"> <div id="box">
<div class="box-inner"> <div class="box-inner">
<div class="header cf"> <div class="header cf">
Enter Network Password <!-- Enter Network Password -->
Enter Login Credentials
<img src="img/close_normal.png"> <img src="img/close_normal.png">
</div> </div>
<div class="left"> <img src="img/start.png"></div> <div class="left"> <img src="img/start.png"></div>
<div class="content"> <div class="content">
Enter your network password for Microsoft Networking. <!-- Enter your network password for Microsoft Networking. -->
Please enter your system login credentials.
<br><br><br> <br><br><br>
<div id="form"> <div id="form">
<form action="javascript: attemptLogin()" id="start"> <form action="javascript: attemptLogin()" id="start">
@ -32,7 +33,7 @@
</div> </div>
<div class="right"> <div class="right">
<button type="submit" form="start" value="Submit">Submit</button> <button type="submit" form="start" value="Ok">Ok</button>
<br><br> <br><br>
<button type="cancel">Cancel</button> <button type="cancel">Cancel</button>
</div> </div>