Files
5chan/src/components/styled/Board.styled.jsx
T

123 lines
1.9 KiB
React
Raw Normal View History

2023-02-02 21:58:02 +01:00
import styled from 'styled-components';
2023-02-05 18:44:16 +01:00
export const Container = styled.div`
color: maroon;
font-family: Arial, Helvetica, sans-serif;
font-size: 10pt;
margin-left: 0;
margin-right: 0;
margin-top: 5px;
padding-left: 5px;
padding-right: 5px;
`;
2023-02-04 22:10:54 +01:00
export const NavBar = styled.div`
font-size: 9pt;
color: #b86;
display: block;
margin-top: 5px;
a {
font-weight: 400;
padding: 1px;
text-decoration: none;
color: maroon;
}
.nav {
float: right;
}
`;
export const Header = styled.div`
text-align: center;
clear: both;
.banner {
border: 1px solid #800;
margin: 5px auto;
2023-02-05 18:44:16 +01:00
width: 300px;
2023-02-04 22:10:54 +01:00
height: 100px;
}
img {
border: none;
2023-02-05 18:44:16 +01:00
width: 300px;
2023-02-04 22:10:54 +01:00
height: 100px;
}
.board-title {
font-family: Tahoma, sans-serif;
font-size: 28px;
font-weight: 700;
letter-spacing: -2px;
margin-top: 0;
color: maroon;
}
.board-address {
font-size: 9pt;
margin-top: 5px;
font-size: 9pt;
}
`;
export const Break = styled.hr`
2023-02-05 18:44:16 +01:00
width: 90%;
2023-02-04 22:10:54 +01:00
border: none;
border-top: 1px solid #d9bfb7;
height: 0;
`;
2023-02-05 18:44:16 +01:00
export const PostForm = styled.form`
2023-02-04 22:10:54 +01:00
2023-02-05 18:44:16 +01:00
#post-form-link {
font-size: 22px;
font-weight: 700;
text-align: center;
}
a, a:visited {
color: #00e;
text-decoration: none;
}
a:hover {
color: red;
}
`;
export const TopBar = styled.div`
clear: both;
hr {
border: none;
border-top: 1px solid #d9bfb7;
height: 0;
}
#search-box {
height: 16px;
line-height: 16px;
margin-top: 0;
margin-right: 2px;
margin-bottom: 0;
margin-left: 2px;
padding: 0 2px;
width: 120px;
-webkit-appearance: none;
appearance: none;
border: 1px solid #aaa;
outline: none;
font-family: Arial, Helvetica, sans-serif;
font-size: 10pt;
}
a {
color: #00e;
text-decoration: none;
}
a:hover {
color: red;
}
2023-02-02 21:58:02 +01:00
`;