2024-02-22 10:11:49 -05:00
|
|
|
/*
|
2024-02-22 07:03:21 -05:00
|
|
|
* Tilde Friends core stylesheet
|
|
|
|
* This is a prototype; things may change based on feedback.
|
2024-02-22 10:11:49 -05:00
|
|
|
*
|
2024-02-22 07:03:21 -05:00
|
|
|
* This Software is an external library that is part of
|
|
|
|
* Tilde Friends and is shared under the MIT license.
|
|
|
|
*
|
2024-02-22 10:11:49 -05:00
|
|
|
* Inject this file in your app at tildefriends.css
|
2024-02-22 07:03:21 -05:00
|
|
|
* and use this tag to import it:
|
2024-02-22 10:11:49 -05:00
|
|
|
* <link rel="stylesheet" href="tildefriends.css"/>
|
|
|
|
*
|
2024-02-22 07:03:21 -05:00
|
|
|
* Revision 0 / 2024 M02 19
|
|
|
|
*/
|
|
|
|
|
|
|
|
body {
|
|
|
|
color: white;
|
|
|
|
font-family: sans-serif;
|
|
|
|
}
|
|
|
|
|
2024-02-22 16:34:11 -05:00
|
|
|
button,
|
|
|
|
.button,
|
2024-02-25 15:37:13 -05:00
|
|
|
input[type='button'],
|
|
|
|
input[type='submit'],
|
2024-02-22 16:34:11 -05:00
|
|
|
select {
|
2024-02-22 07:03:21 -05:00
|
|
|
border: none;
|
|
|
|
border-radius: 8px;
|
|
|
|
padding: 8px 12px;
|
|
|
|
text-align: center;
|
|
|
|
text-decoration: none;
|
|
|
|
display: inline-block;
|
|
|
|
margin: 4px;
|
|
|
|
|
2024-02-22 16:34:11 -05:00
|
|
|
&.red {
|
|
|
|
background-color: #bd1e24;
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.green {
|
|
|
|
background-color: #18922d;
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.blue {
|
|
|
|
background-color: #0067a7;
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.yellow {
|
|
|
|
background-color: #ee9600;
|
|
|
|
color: black;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
filter: brightness(0.75);
|
|
|
|
}
|
2024-02-22 07:03:21 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
a:link {
|
|
|
|
color: #268bd2;
|
|
|
|
}
|
|
|
|
|
|
|
|
a:visited {
|
|
|
|
color: #6c71c4;
|
|
|
|
}
|
|
|
|
|
|
|
|
a:hover {
|
|
|
|
color: #859900;
|
|
|
|
}
|
|
|
|
|
|
|
|
a:active {
|
|
|
|
color: #2aa198;
|
|
|
|
}
|
|
|
|
|
|
|
|
table {
|
|
|
|
border-collapse: collapse;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2024-02-25 15:37:13 -05:00
|
|
|
td,
|
|
|
|
th {
|
2024-02-22 07:03:21 -05:00
|
|
|
border: 1px solid #ffffff40;
|
|
|
|
text-align: left;
|
|
|
|
padding: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
tr:nth-child(even) {
|
|
|
|
background-color: #ffffff20;
|
|
|
|
}
|
|
|
|
|
|
|
|
.flex {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
.flex-column {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
.flex-row {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
}
|
|
|
|
|
|
|
|
.inline-flex-row {
|
|
|
|
display: inline-flex;
|
|
|
|
flex-direction: row;
|
|
|
|
}
|
2024-02-22 12:11:13 -05:00
|
|
|
|
|
|
|
.box {
|
|
|
|
background-color: #00000020;
|
|
|
|
border: 1px solid grey;
|
|
|
|
border-radius: 8px;
|
|
|
|
padding: 16px;
|
|
|
|
margin: 4px;
|
|
|
|
}
|