-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex_style.css
More file actions
169 lines (143 loc) · 2.66 KB
/
index_style.css
File metadata and controls
169 lines (143 loc) · 2.66 KB
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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
body {
background-color: white;
}
:root {
--main-radius: 5px;
--main-padding: -30px;
}
.container {
display: grid;
height: 100vh;
grid-template-columns: 1fr 1fr 1fr 1fr;
grid-template-rows: 0.2fr 1.5fr 1.2fr 0.8fr;
grid-template-areas: "nav nav nav nav" "main main main main" "content content content content" "footer footer footer footer";
grid-gap: 0.2rem;
font-family: "Poppins", sans-serif;
font-weight: 800;
text-transform: uppercase;
font-size: 12px;
background-color: white;
text-align: center;
}
nav {
background-color: white;
grid-area: nav;
padding-top: var(--main-padding);
}
main {
background-color: white;
grid-area: main;
/* The image used */
background-image: url("images/Banner7.png");
/* Full height */
height: 100%;
/* Center and scale the image nicely */
background-position: center center;
background-attachment:fixed;
background-repeat:no-repeat;
background-size: cover;
}
#content {
background-color: white;
grid-area: content;
padding-top: var(--main-padding);
font-family: "Raleway", sans-serif;
font-weight: lighter;
}
footer {
background-color: orange;
grid-area: footer;
padding-top: var(--main-padding);
font-size: 15px;
}
.company-info {
margin-left: auto;
margin-right: auto;
text-transform: none;
margin-top: 0%;
width: 50%;
font-size: 14.76px;
height: 50%;
overflow: auto;
color: orange;
text-align: center;
}
h1 {
color: rgb(59, 59, 59);
}
@media only screen and (max-width:1900px) {
.company-info {
margin-left: auto;
margin-right: auto;
text-align: center;
width: 100%;
font-size: 15px;
}
}
@media only screen and (max-width:550px) {
.container {
grid-template-columns: 1fr;
grid-template-rows: 0.4fr 0.4fr 2.2fr 1.2fr 1.2fr 1.2fr 1fr;
grid-template-areas: "nav" "main" "main" "content" "content" "content" "footer";
}
main {
border-radius: 3%;
}
.company-info {
margin-left: 0%;
margin-right: 0%;
width: 100%;
font-size: 12px;
}
}
h2 {
font-size: 1.5vw;
margin-top: -1%;
text-align: center;
font-family: "Gruppo";
color: white;
font-style: italic;
text-shadow: 2px 2px 2px black
}
.logo {
margin-top: 10px;
width: 50%;
max-width: 350px;
min-width: 180px;
}
.Navbar {
list-style-type: none;
margin: 0;
padding: 0;
}
.Navbar li {
float: right;
}
.Navbar a {
display: block;
color: rgb(59, 59, 59);
text-align: center;
padding: 14px 16px;
text-decoration: none;
background-color: orange;
font-family: "Poppins";
}
.Navbar a:hover {
background-color: darkorange;
}
.csharp-icon {
max-width: 100%;
height: auto;
}
.css-icon {
max-width: 100%;
height: auto;
}
.js-icon {
max-width: 100%;
height: auto;
}
.html-icon {
width: auto;
height: auto;
}