generated from chingu-voyages/voyage-template
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathstyles.css
157 lines (128 loc) · 2.27 KB
/
styles.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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
/* Font imports */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@600&display=swap');
/*
* Begin styling for html native elements
*/
* {
box-sizing: border-box;
font-family: 'IBM Plex Mono';
font-weight: 300;
margin: 0;
padding: 0;
}
a {
color: black;
text-decoration: none;
}
h1 {
font-family: Inter;
font-size: 3rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.2rem;
}
body {
min-height: 100vh;
background-color: rgb(255, 255, 255);
background-image: linear-gradient(rgb(255, 255, 255), 95%, rgb(80, 231, 168));
}
button {
cursor: pointer;
font-size: 1.4rem;
}
input {
font-size: 1.2rem;
}
label {
font-size: 1.2rem;
}
/*
* End styling for html native element
* Begin Styling for Home layout & global navigation
*/
.wrapper {
min-height: 100vh;
display: grid;
grid-template-rows: auto 1fr auto;
}
.logo {
height: 100px;
text-align: center;
}
.nav-bar {
display: flex;
align-items: center;
justify-content: space-between;
padding: 20px 20px;
}
.nav-bar a {
font-size: 1.5rem;
}
.nav-bar h1 {
cursor: pointer;
}
.header {
margin-top: 40px;
display: flex;
justify-content: center;
}
.flex-menu {
height: 400px;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
.buttons {
background-color: rgb(255, 255, 255, 0);
border: none;
font-size: 2rem;
padding: 10px 40px;
transition-duration: 0.4s;
}
.play:hover {
background-color: rgb(255, 182, 47);
color: white;
}
.instructions:hover {
background-color: rgb(97, 213, 252);
color: white;
}
.ourteam:hover {
background-color: rgb(152, 0, 255);
color: white;
}
.github:hover {
background-color: rgb(80, 231, 168);
color: white;
}
.footer {
display: flex;
justify-content: space-between;
align-items: center;
margin: 40px 20px;
font-size: 1rem;
}
/*
* End styling for html static elements
* Begin styling for responsive design
*/
@media (max-width: 700px) {
.nav-bar {
display: grid;
justify-content: space-between;
}
.nav-bar h1 {
text-align: center;
}
.nav-bar div {
grid-column-start: 1;
grid-column-end: 5;
padding-bottom: 20px;
}
}