-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.css
146 lines (126 loc) · 2.47 KB
/
home.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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
nav {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 100;
background-image: linear-gradient(50deg, #d14e0c, #c55033, #d1651c);
position: fixed;
display: flex;
align-items: center;
justify-content: space-between;
height: 50px;
}
nav ul {
display: flex;
flex-direction: row;
list-style: none;
}
#navbar a:hover {
text-decoration: underline rgb(242, 245, 244) 4px;
}
#navbar a {
transition: 0.7s;
padding: 0px 80px;
text-decoration: none;
color: black;
font-size: 20px;
font-family: 'Times New Roman', Times, serif;
font-variant: small-caps;
font-weight: bolder;
}
#logo {
margin-left: 60px;
}
#login {
height: 30px;
width: 70px;
background-color: black;
color: whitesmoke;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
font-weight: 600;
margin-right: 100px;
border-radius: 10px 0px;
}
#login:hover {
cursor: pointer;
background-color: white;
color: black;
box-shadow: 0px 0px 20px rgba(235, 231, 102, 0.592);
}
.home {
position: relative;
top: 50px;
height: 100vh;
background-color: black;
color: white;
display: flex;
}
.hero {
display: flex;
flex-direction: column;
justify-content: center;
align-items: flex-start;
font-size: 30px;
font-variant: small-caps;
}
.hero button {
width: 150px;
background-color: #d14e0c;
border-radius: 10px 0;
height: 30px;
color: rgb(238, 182, 117);
font-size: 15px;
font-weight: 600;
font-style: oblique;
margin: 10px;
}
.hero button a {
color: rgb(238, 182, 117);
font-size: 15px;
font-weight: 600;
font-style: oblique;
text-decoration: none;
}
.hero button:hover {
background-color: rgb(238, 182, 117);
border-radius: 0 10px;
box-shadow: 0 0 5px 5px yellow;
cursor: pointer;
}
.hero button:hover a {
color: #d14e0c;
}
#homeimg {
height: 100vh;
position: relative;
left: -80px;
object-fit: contain;
}
footer {
background-color: black;
position: absolute;
width: 100%;
bottom: -173px;
color: white;
}
::-webkit-scrollbar {
display: none;
}
.footer {
text-decoration: none;
color: white;
display: grid;
grid-template-columns: auto auto auto;
gap: 20px;
justify-content: space-around;
}
.footer a {
text-decoration: none;
color: white;
}