1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
| @import './base.css';
|
| #app {
| margin: 0 auto;
| padding: 0;
| /* background-color: #D5EAFF; */
| font-weight: normal;
| height: 100%;
| width: 100%;
| /* min-width: 1536px; */
| /* min-height: 730px; */
| /* background-image: url("../../src/assets/background.jpg"); */
| }
|
| a,
| .green {
| text-decoration: none;
| color: hsla(160, 100%, 37%, 1);
| transition: 0.4s;
| }
|
| @media (hover: hover) {
| a:hover {
| background-color: hsla(160, 100%, 37%, 0.2);
| }
| }
|
| @media (min-width: 1024px) {
| body {
| display: flex;
| place-items: center;
| }
|
| #app {
| display: grid;
| grid-template-columns: 1fr 1fr;
|
| }
| }
| *{
| margin: 0;
| padding: 0;
|
| }
| .mainDiv{
| height: 100vh;
| width: 100vw;
| }
| html,body{
| height: 100%;
| width: 100%;
| margin: 0;
| padding: 0;
| }
|
|