-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
92 lines (88 loc) · 1.88 KB
/
style.css
File metadata and controls
92 lines (88 loc) · 1.88 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Red Rose", cursive;
}
body{
background: linear-gradient(
to right bottom,
rgba(54, 59, 77, 0.847),
rgba(30, 40, 66, 0.822)),
url("./assets/pexels-maxyne-barcel-10402282\ 1.png");
background-size: cover;
background-repeat: no-repeat;
height: 100vh;
}
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;300;900&family=Nunito:ital,wght@1,700&family=Orbitron:wght@400;500&family=Oswald:wght@200;700&family=Revalia&family=Roboto+Serif:ital,opsz@1,8..144&display=swap');
/* ------------------------------ */
/* ---------- NAVBAR ------------ */
/* ------------------------------ */
.list li{
float: left;
position: relative;
left: 400px;
margin: 0px 20px;
list-style-type: none;
text-decoration: none;
bottom: 30px;
color: #FFC233;
}
.button-small{
position: relative;
left: 600px;
bottom: 30px;
padding: 5px 20px;
background-color: #FF505F;
color: #ffff;
border: 1px solid #FF505F;
}
.logo{
width: 90px;
margin-top: 40px;
margin-left: 50px;
}
/* ------------------------------ */
/* ---------- HERO ------------ */
/* ------------------------------ */
.hero-heading{
position: relative;
top: 50px;
left: 300px;
font-family: 'Oswald', sans-serif;
font-size: 60px;
text-align: center;
width: 50%;
color: #FFC233;
}
.bottom div img{
position: relative;
left: 1100px;
width: 100px;
height: 100px;
top: 120px;
}
.button-large{
position: relative;
left: 530px;
top: 50px;
padding: 10px 40px;
background-color: #FF505F;
border: 1px solid #FF505F;
color: #ffff;
text-align: center;
}
@media screen and (max-width:500px) {
.list li{
font-size: 40px;
}
.hero-heading{
width: 170vw;
font-size: 80px;
text-align: center;
line-height: 100px;
}
.button-small{
font-size: 60px;
}
}