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 {
-webkit-user-select: none;
font-family: 'Sans-Serif';
font-size: 8pt;
font-family: 'Less Perfect DOS VGA';
font-size: 12pt;
color: white;
text-shadow: 0 0 0;
}
@ -63,8 +63,8 @@ box-shadow: inset -1px -1px 0px 0px rgba(128,128,128,1);
.box-inner .content {
margin: auto;
padding: 20px 2px;
font-size: 10pt;
font-family: 'Sans-Serif';
font-size: 12pt;
font-family: 'Less Perfect DOS VGA';
display: inline-block;
width: 60%;
@ -72,23 +72,37 @@ box-shadow: inset -1px -1px 0px 0px rgba(128,128,128,1);
button,
button:hover {
padding: 5px;
width: 100%;
font-size: 10pt;
font-family: 'Sans-Serif';
font-family: 'Less Perfect DOS VGA';
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 {
padding: 0px;
width: 548px;
border: 2px solid #000080;
font-size: 8pt;
font-size: 12pt;
text-align: left;
font-family: 'Sans-Serif';
font-weight: bold;
font-family: 'Less Perfect DOS VGA';
font-weight: normal;
background-color: #000080;
color: white;
text-shadow: 0 0 0;
@ -109,7 +123,7 @@ hr {
}
#clock-widget span {
font: 'Sans-Serif';
font: 'Less Perfect DOS VGA';
text-shadow: none;
font-color: white;
color: white;

View File

@ -321,7 +321,7 @@ button,
html input[type="button"], /* 1 */
input[type="reset"],
input[type="submit"] {
-webkit-appearance: button; /* 2 */
/* webkit-appearance: button; /* 2 */
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" />
</head>
<body oncontextmenu="return false;">
<div id="box">
<div class="box-inner">
<div class="header cf">
Enter Network Password
<!-- Enter Network Password -->
Enter Login Credentials
<img src="img/close_normal.png">
</div>
<div class="left"> <img src="img/start.png"></div>
<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>
<div id="form">
<form action="javascript: attemptLogin()" id="start">
@ -32,7 +33,7 @@
</div>
<div class="right">
<button type="submit" form="start" value="Submit">Submit</button>
<button type="submit" form="start" value="Ok">Ok</button>
<br><br>
<button type="cancel">Cancel</button>
</div>