-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhome.css
115 lines (97 loc) · 1.67 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
@import url("https://fonts.googleapis.com/css?family=Montserrat:300,400,700&display=swap");
html {
font-size: 14px;
font-family: 'Monterrat', sans-serif;
}
body{
margin: 0px;
}
*{
margin: 0;
padding: 0;
font-family: sans-serif;
}
.banner{
width: 100%;
height: 100vh;
position: relative;
overflow: hidden;
}
.slider{
width: 100%;
height: 100vh;
position: absolute;
top: 0;
}
#slideImg{
width: 100%;
height: 100%;
}
.overlay{
width: 100%;
height: 100vh;
background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.1));
position: absolute;
top: 0;
}
.navbar{
width: 95%;
display: flex;
align-items: center;
margin: 25px auto;
}
.logo{
flex-basis: 10px;
}
.logo img{
width: 160px;
height: 70px;
cursor: pointer;
margin-top: 0px;
margin-right: 960px;
display: flex;
background-color: #B7B7B7;
border-radius: 20px;
}
.logo img:hover{
border: 3px solid #96D2E5;
}
nav a{
color: #3F3B3B;
margin: 20px;
text-decoration: none;
font-size: 20px;
text-transform: lowercase;
background-color: #E3E3E3;
border-radius: 20px;
}
nav{
display: flex;
flex-flow: row-reverse;
}
nav a:hover{
border: 3px solid #96D2E5;
}
.content{
width: 60%;
margin: 160px auto 0;
text-align: center;
color: white;
}
.content h1{
font-size: 80px;
}
.content h3{
width: 80%;
margin: 20px auto 100px;
font-weight: 350;
font-size: 40px;
line-height: 25px;
}
.copyright{
background-color: #DAD9DC;
font-family: 'Source Sans Pro', sans-serif;
color: #3F3B3B;
text-align: center;
font-weight: 100;
}