-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlanding-page.css
More file actions
116 lines (101 loc) · 2.06 KB
/
landing-page.css
File metadata and controls
116 lines (101 loc) · 2.06 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
:root {
--landing-page-bg-color: #fff8e7;
--landing-page-nav-links-color: #71bfff;
}
.whole-content {
background-color: var(--landing-page-bg-color);
font-family: "Exo", sans-serif;
display: flex;
flex-direction: column;
}
/* NAVBAR RELATED STYLING OF LANDING PAGE */
.site-nav {
display: flex;
justify-content: space-between;
align-items: center;
padding: 0.7rem;
flex-wrap: wrap;
background-color: var(--primary-color);
color: var(--text-color);
/* Keeping these lines of code because I want to rectify them later */
/* color: var(--landing-page-nav-links-color); */
/* box-shadow: 10px 5px 1px rgb(0,0,24); */
width: 100%;
}
.site-links,
.social-links {
display: flex;
justify-content: space-between;
padding-inline-start: 0px;
padding: 1rem;
}
.site-links {
gap: 1rem;
}
.list-item-inline {
padding: 0.5rem;
}
.social-link {
font-size: 1.5rem;
}
.social-link:hover {
color: var(--primary-color);
}
.title-letter {
font-size: 2.3rem;
font-weight: var(--font-bold);
}
.site-link:hover {
border-bottom: var(--alert-border-format);
border-bottom-color: var(--secondary-bg);
}
/* HERO AND INSTALLATION SECTION PARTS */
.main-intro,
.main-installation {
display: flex;
justify-content: space-evenly;
align-items: center;
}
.landing-image-container {
flex-basis: 50%;
}
.landing-image {
width: 85%;
min-width: 50%;
}
.landing-content-container,
.installation-content-container {
flex-basis: 40%;
}
.landing-content-container,
.installation-content-container {
display: flex;
flex-flow: column wrap;
justify-content: center;
align-items: center;
text-align: justify;
color: var(--primary-color);
}
.key-words {
color: var(--landing-page-nav-links-color);
text-decoration: underline;
}
.code-container {
flex-basis: 40%;
}
@media screen and (max-width: 768px) {
.site-nav {
flex-direction: column;
width: auto;
}
.main-intro,
.main-installation {
flex-direction: column;
align-items: center;
justify-content: center;
}
.code-container {
width: 100%;
overflow: auto;
}
}