Last change
on this file since 590f667 was 590f667, checked in by Ljubomir Ilievski <ilievski.ljubomir@…>, 3 months ago |
Added Initial frontend
|
-
Property mode
set to
100644
|
File size:
492 bytes
|
Line | |
---|
1 | @import './base.css';
|
---|
2 |
|
---|
3 | #app {
|
---|
4 | max-width: 1280px;
|
---|
5 | margin: 0 auto;
|
---|
6 | padding: 2rem;
|
---|
7 | font-weight: normal;
|
---|
8 | }
|
---|
9 |
|
---|
10 | a,
|
---|
11 | .green {
|
---|
12 | text-decoration: none;
|
---|
13 | color: hsla(160, 100%, 37%, 1);
|
---|
14 | transition: 0.4s;
|
---|
15 | padding: 3px;
|
---|
16 | }
|
---|
17 |
|
---|
18 | @media (hover: hover) {
|
---|
19 | a:hover {
|
---|
20 | background-color: hsla(160, 100%, 37%, 0.2);
|
---|
21 | }
|
---|
22 | }
|
---|
23 |
|
---|
24 | @media (min-width: 1024px) {
|
---|
25 | body {
|
---|
26 | display: flex;
|
---|
27 | place-items: center;
|
---|
28 | }
|
---|
29 |
|
---|
30 | #app {
|
---|
31 | display: grid;
|
---|
32 | grid-template-columns: 1fr 1fr;
|
---|
33 | padding: 0 2rem;
|
---|
34 | }
|
---|
35 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.