DiscordEmbedder/static/style.css

42 lines
711 B
CSS
Raw Permalink Normal View History

2023-12-18 13:01:53 -06:00
@import url("https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css");
body {
background-color: rgb(40, 30, 60);
padding: 2.5%;
}
body, input {
font-family: 'Rubik', Verdana, Geneva, Tahoma, sans-serif;
text-align: center;
color: white;
}
input[type="text"] {
width: 90%;
max-width: 500px;
}
2024-01-07 02:23:18 -06:00
form {
margin: 10px;
}
input, select {
margin: 5px auto;
padding: 10px;
font-size: 1.25rem;
2023-12-18 13:01:53 -06:00
background-color: black;
2024-01-07 02:23:18 -06:00
color: white;
2023-12-18 13:01:53 -06:00
border: 2px gray solid;
2024-01-07 02:23:18 -06:00
border-radius: 10px;
}
label {
font-size: 1.5rem;
}
.code {
font-family: 'Source Code Pro';
background-color: rgb(40, 40, 50);
display: block;
padding: 10px;
2023-12-18 13:01:53 -06:00
}