hns-email/templates/assets/css/index.css

104 lines
1.6 KiB
CSS
Raw Permalink Normal View History

2024-10-04 17:33:04 +10:00
body {
background-color: #000000;
color: #ffffff;
}
2024-10-04 20:43:58 +10:00
2024-10-04 17:33:04 +10:00
h1 {
font-size: 50px;
margin: 0;
padding: 0;
}
2024-10-04 20:43:58 +10:00
2024-10-04 17:33:04 +10:00
.centre {
margin-top: 10%;
text-align: center;
}
2024-10-04 20:43:58 +10:00
2024-10-04 17:33:04 +10:00
a {
color: #ffffff;
text-decoration: none;
}
2024-10-04 20:43:58 +10:00
2024-10-04 17:33:04 +10:00
a:hover {
text-decoration: underline;
2024-10-04 20:43:58 +10:00
}
header h1 {
display: inline;
}
.button {
background-color: #ffffff;
border: 1px solid #ffffff;
border-radius: 5px;
color: #000000;
padding: 10px;
text-align: center;
text-decoration: none;
display: inline-block;
}
.button:hover {
background-color: #000000;
border: 1px solid #ffffff;
border-radius: 5px;
color: #ffffff;
text-decoration: none;
}
.conversation {
border: 5px solid #ffffff;
border-radius: 5px;
margin-bottom: 25px;
padding: 10px;
}
.email {
border: 1px solid #ffffff;
border-radius: 5px;
margin: auto;
margin-top: 10px;
margin-bottom: 10px;
padding: 10px;
width: fit-content;
}
.from {
font-weight: bold;
display: inline;
}
.date {
display: inline;
font-size: 12px;
color: #ffffff;
font-weight: bold;
margin-top: 10px;
}
.body {
margin-top: 10px;
font-size: 12px;
color: #000000;
background-color: #ffffff;
border-radius: 10px;
padding: 10px;
}
.body a {
color: #000000;
}
input {
background-color: #ffffff;
border: 1px solid #ffffff;
border-radius: 5px;
color: #000000;
padding: 10px;
text-decoration: none;
display: inline-block;
margin-top: 10px;
margin-bottom: 10px;
width: min(500px, 90%);
2024-10-04 17:33:04 +10:00
}