1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- @import '../app.scss';
- // Fonts
- @import '../fonts/awesome/awesome-font.css';
- @import '../fonts/iransans/iransans-font.css';
- body {
- font-family: iransans;
- }
- h1 {
- font-size: 1.5rem;
- }
- h2 {
- font-size: 1.4rem;
- }
- h3 {
- font-size: 1.3rem;
- }
- h4 {
- font-size: 1.2rem;
- }
- h5 {
- font-size: 1.1rem;
- }
- h6 {
- font-size: 1rem;
- }
- a {
- transition: all 0.3s ease;
- text-decoration: none;
- &:hover {
- text-decoration: none;
- }
- }
- .article-content-holder {
- margin: 3rem 0;
- .title {
- margin-bottom: 1.5rem;
- line-height: 2;
- color: $primary;
- }
- .author-published-holder {
- display: flex;
- align-items: center;
- .author-avatar {
- width: 3rem;
- height: 3rem;
- border-radius: 50%;
- }
- .author-published-text {
- margin-right: 0.75rem;
- .author-name {
- margin-bottom: 0.625rem;
- }
- .published-at {
- color: lighten($gray, 20);
- font-size: 80%;
- }
- }
- }
- }
|