www.techtransthai.org/style.css

94 lines
1.6 KiB
CSS
Raw Normal View History

2023-07-25 16:04:31 +00:00
html *
{
font-family: Cantarell, sans-serif;
}
2023-08-02 17:00:53 +00:00
2023-08-02 17:43:14 +00:00
body {
background-color: #fafafa;
}
2023-08-02 17:00:53 +00:00
.header {
display: flex;
justify-content: center;
align-items: center;
}
2023-07-25 16:04:31 +00:00
.button {
background-color: #EBEBEB;
color: black;
border: none;
border-radius: 8px;
justify-content: center;
align-items: center;
text-decoration: none;
display: flex;
font-size: 16px;
font-family: Cantarell, sans-serif;
margin: 4px 2px;
cursor: pointer;
width: 100px;
height: 40px;
transition-duration: 0.2s;
}
.button:hover {
background-color: #E0E0E0;
2023-08-02 17:00:53 +00:00
}
.footer {
display: flex;
justify-content: center;
align-items: center;
}
.versionbutton {
background-color: #E5EFFB;
color: #1a5fb4;
border: none;
border-radius:50px;
justify-content: center;
align-items: center;
text-decoration: none;
display: flex;
font-size: 16px;
font-family: Cantarell, sans-serif;
font-weight: bold;
cursor: pointer;
padding-top: 10px;
2023-08-02 17:15:59 +00:00
padding-right: 15px;
2023-08-02 17:00:53 +00:00
padding-bottom: 10px;
2023-08-02 17:15:59 +00:00
padding-left: 15px;
2023-08-02 17:00:53 +00:00
margin-top: 10px;
margin-bottom: 10px;
2023-08-02 17:43:14 +00:00
}
.grid-container {
display: grid;
grid-template-areas:
'header header header header header'
'left middle middle middle right'
'footer footer footer footer footer';
}
.left {
grid-area: left;
}
/* Style the middle column */
.middle {
grid-area: middle;
}
/* Style the right column */
.right {
grid-area: right;
}
/* Invidious */
.list {
border-radius: 12px 12px 12px 12px;
background-color: rgba(255, 255, 255, 1);
box-shadow: 0px 1px 4px 1px rgba(0, 0, 0, 0.13);
margin-bottom: 50px;
2023-07-25 16:04:31 +00:00
}