Make UI improvements #1

Open
mtsz wants to merge 26 commits from mtsz/mt940-mbank-ts:ui-improvements into master
2 changed files with 23 additions and 23 deletions
Showing only changes of commit b370d5a7df - Show all commits

View File

@ -2,30 +2,10 @@
<html> <html>
<head> <head>
<title>mBank mt940 konwerter</title> <title>mBank mt940 konwerter</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="styles.css" />
</head> </head>
<style>
p {
max-width: 600px;
}
input,
button {
height: 40px;
font-size: 20px;
}
.hidden {
display: none;
}
.success {
background-color: hsl(120, 100%, 85.1%);
padding: 2rem;
margin: 1rem;
font-size: 1.2rem;
color: hsl(120, 100%, 7.1%);
}
</style>
<body> <body>
<main> <main>
<header> <header>

20
public/styles.css Normal file
View File

@ -0,0 +1,20 @@
body {
max-width: 600px;
margin: 0 auto;
}
button {
width: 100%;
}
.hidden {
display: none;
}
.success {
background-color: hsl(120, 100%, 85.1%);
padding: 2rem;
margin: 1rem;
font-size: 1.2rem;
color: hsl(120, 100%, 7.1%);
}