forked from ryanmwangi/CalMerger
37 lines
637 B
CSS
37 lines
637 B
CSS
|
body {
|
||
|
font-family: Arial, sans-serif;
|
||
|
}
|
||
|
|
||
|
#merge-form {
|
||
|
max-width: 400px;
|
||
|
margin: 40px auto;
|
||
|
padding: 20px;
|
||
|
border: 1px solid #ccc;
|
||
|
border-radius: 10px;
|
||
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
||
|
}
|
||
|
|
||
|
label {
|
||
|
display: block;
|
||
|
margin-bottom: 10px;
|
||
|
}
|
||
|
|
||
|
input[type="url"], input[type="text"] {
|
||
|
width: 100%;
|
||
|
padding: 10px;
|
||
|
margin-bottom: 20px;
|
||
|
border: 1px solid #ccc;
|
||
|
}
|
||
|
|
||
|
button[type="submit"] {
|
||
|
background-color: #4CAF50;
|
||
|
color: #fff;
|
||
|
padding: 10px 20px;
|
||
|
border: none;
|
||
|
border-radius: 5px;
|
||
|
cursor: pointer;
|
||
|
}
|
||
|
|
||
|
button[type="submit"]:hover {
|
||
|
background-color: #3e8e41;
|
||
|
}
|