-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
104 lines (103 loc) · 1.82 KB
/
style.css
File metadata and controls
104 lines (103 loc) · 1.82 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
/* comments */
/* * {
margin: 0;
padding: 0;
outline: none;
} */
.container {
display: grid;
grid-template-rows: 10vh 90vh;
background-image: url("./assets/bg.png");
background-position: center;
background-size: cover;
height: 100vh;
}
/* navbar section start */
.navbar {
background-color: #ada;
display: grid;
grid-template-columns: 1fr 0.1fr 2fr 1fr;
justify-content: center;
align-items: center;
background-color: #1f1f1f;
color: #fff;
}
.logo {
/* background-color: #6f6f6f; */
margin: auto;
height: 40px;
}
nav div:nth-child(1) {
text-align: center;
}
.grow-list .list {
list-style-type: none;
display: grid;
grid-template-columns: repeat(5, 1fr);
}
.button-small {
margin-left: 50%;
padding: 5px 15px;
font-size: 16px;
background-color: rgb(160, 60, 160);
border: 0;
border-radius: 7px;
color: #fff;
}
/* navbar section end */
/* hero section start */
.hero {
text-align: center;
margin-top: 12%;
}
.hero-heading {
font-size: 60px;
font-weight: 800;
padding: 0 40px;
margin: 10px 10%;
color: #fff;
}
.hero-description {
color: #fff;
font-size: 1em;
margin-top: 5%;
}
.button-large {
background-color: rgb(160, 60, 160);
border: none;
border-radius: 7px;
font-size: 30px;
color: #fff;
padding: 10px 20px;
margin-top: 3%;
}
/* hero section end */
/* media queries */
@media only screen and (max-width: 1050px) {
.button-small {
padding: 1px 5px;
font-size: 12px;
border-radius: 7px;
margin-left: 0;
}
.grow-list {
display: none;
}
.navbar div:last-child {
grid-column: 4/5;
text-align: center;
}
}
@media only screen and (max-width: 717px) {
.button-large {
font-size: 16px;
padding: 5px 10px;
}
.hero-heading {
font-size: 36px;
}
.hero-description {
padding-left: 5%;
padding-right: 5%;
}
}