-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
141 lines (116 loc) · 2.95 KB
/
main.css
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;400&display=swap');
html {
background: url('images/background.svg') no-repeat center center fixed;
background-repeat: no-repeat;
background-attachment: fixed;
background-position: 0;
background-size: cover;
z-index: 1000;
font-family: 'Roboto', sans-serif;
font-weight: 100;
font-size: 1rem;
}
.container {
display: grid;
grid-template-columns: 9% 6% 77vw 1% 5%;
grid-template-rows: 13vh 80vh 2vh;
min-height: 50%;
grid-template-areas:
'headerl header header header headerr'
'side-l side-l main side-r side-r'
'footer footer footer footer footer';
background: url('images/background.svg') no-repeat center center fixed;
background-repeat: no-repeat;
background-attachment: fixed;
background-position: 0;
background-size: cover;
z-index: 1000;
}
.cordinates {
display: inline-block;
position: center;
text-align: center;
margin-top: 0.2rem ;
grid-area: header;
}
.area-l {
/* background: rgba(50, 9, 235, 0.055); */
grid-area: side-l;
height: 100%;
height: 100%;
min-height: 45em;
max-height: 55em;
}
.area-c {
/* background: rgba(92, 235, 9, 0.123); */
grid-area: main;
display: grid;
grid-template-columns: 35% 25% 25%;
grid-template-rows: 50% 40% 10% 10%;
grid-template-areas:
'header header header'
'chead cbody cbody2'
'legs legs legs'
'legs legs legs';
height: 100%;
min-height: 45em;
max-height: 55em;
width: 100%;
min-width: 100rem;
max-width: 200rem;
}
.area-r {
/* background: rgba(235, 156, 9, 0.048); */
grid-area: side-r;
}
.chead {
/* background: url('images/head.svg') no-repeat right; */
/* grid-area: chead; */
grid-column-start: chead;
grid-row-start: 2;
-webkit-transition: all 1.4s ease-in-out;
-moz-transition: all 1.4s ease-in-out;
-o-transition: all 1.4s ease-in-out;
transition: all 1.4s ease-in-out;
margin-left: 12vw;
left: 10vw;
}
.Layer_2_1_ {
-webkit-transition: all 0.7s ease-in-out;
-moz-transition: all 0.7s ease-in-out;
-o-transition: all 0.7s ease-in-out;
transition: all 0.7s ease-in-out;
}
.chead-svg {
/* margin-top: 12rem; */
/* margin-left: 5.5rem; */
width: 23rem;
-webkit-transition: all 0.4s ease-in-out;
-moz-transition: all 0.4s ease-in-out;
-o-transition: all 0.4s ease-in-out;
transition: all 0.4s ease-in-out;
}
.cbody {
/* background: rgba(9, 235, 28, 0.644); */
background: url('images/body.svg') no-repeat center;
/* grid-area: chead / cbody; */
grid-column-start: chead;
grid-column-end: span 4;
grid-row-start: cbody;
grid-row-end: 4;
z-index: -1;
}
.clegs {
background: url('images/branch.svg') no-repeat ;
/* background: rgba(9, 235, 28, 0.644); */
grid-column-start: 1;
grid-column-end: 4;
grid-row-start: 3;
grid-row-end: 4;
z-index: -2;
/* display: block; */
height: 100vh;
min-width: 100rem;
max-width: 200rem;
width: 60vw;
}