www.techtransthai.org/style.css

109 lines
1.6 KiB
CSS
Raw Normal View History

2023-08-03 07:08:41 +00:00
@import url("cantarell/cantarell.css");
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;
2023-08-02 19:37:58 +00:00
font-weight: bold;
2023-07-25 16:04:31 +00:00
margin: 4px 2px;
cursor: pointer;
width: 100px;
2023-08-02 19:37:58 +00:00
height: 35px;
2023-07-25 16:04:31 +00:00
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;
}
2023-08-04 21:37:29 +00:00
.bigbutton {
background-color: #fafafa;
color: black;
border-radius:10px;
2023-08-02 17:00:53 +00:00
justify-content: center;
align-items: center;
text-decoration: none;
2023-08-04 21:37:29 +00:00
display: grid;
2023-08-04 21:43:09 +00:00
font-size: 14px;
2023-08-02 17:00:53 +00:00
cursor: pointer;
2023-08-02 17:15:59 +00:00
padding-right: 15px;
padding-left: 15px;
2023-08-07 17:33:24 +00:00
margin-bottom: 20px;
2023-08-04 21:37:29 +00:00
transition-duration: 0.2s;
}
.bigbutton:hover {
background-color: #E0E0E0;
2023-08-02 17:43:14 +00:00
}
.grid-container {
display: grid;
2023-08-02 17:57:42 +00:00
justify-content: center;
2023-08-02 17:43:14 +00:00
grid-template-areas:
2023-08-02 17:57:42 +00:00
'left middle right'
2023-08-02 17:43:14 +00:00
}
.left {
grid-area: left;
}
.middle {
grid-area: middle;
2023-08-02 17:57:42 +00:00
width: 15cm;
2023-08-02 17:43:14 +00:00
}
.right {
grid-area: right;
}
2023-08-02 18:24:02 +00:00
.inner-grid {
display: grid;
align-items: center;
2023-08-02 19:37:58 +00:00
grid-template-columns: 3cm 1fr 3cm;
2023-08-02 18:24:02 +00:00
grid-template-areas:
'inner-left inner-middle inner-right'
}
2023-08-02 17:43:14 +00:00
.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-08-02 19:37:58 +00:00
}
.separator {
width: 15cm;
height: 1px;
background-color: rgba(237, 237, 237, 1);
2023-08-04 21:37:29 +00:00
}