-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
99 lines (84 loc) · 1.35 KB
/
Copy pathindex.css
File metadata and controls
99 lines (84 loc) · 1.35 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
*{
padding: 0;
margin: 0;
overflow: hidden;
}
.container{
width: 100vw;
}
header{
background-color: teal /*#35424a*/;
padding-top: 15px;
min-height: 45px;
}
header a {
font-size: 12px;
text-decoration: none;
text-transform: uppercase;
font-family: Helvetica;
color: #ffffff;
}
header ul {
margin: 0px;
padding: 0px;
}
header li {
list-style: none;
display: inline;
padding: 0 20px 0 20px;
}
header #logo{
float: left;
margin: 0;
}
header nav{
float: right;
margin-top: 10px;
}
header .highlight{
color:#ffffff;
font-weight: bold;
}
header a:hover{
color: indianred;
font-weight: bold;
}
#showcase{
background: url("img/Dubaii.jpg");
background-position: center;
background-size: cover;
background-repeat: no-repeat;
height: 92vh;
text-align: center;
}
#showcase h1{
margin-top: 100px;
color: #ffffff;
font-size: 100px;
margin-bottom: 10px;
}
#showcase p{
font-size: 30px;
color: teal;
}
button{
padding: 20px;
color:#ffffff;
background-color: teal;
border-radius: 10px;
}
@media all and (max-width:520px) {
header {
text-align: center;
}
#showcase{
text-align: center;
}
#showcase h1{
margin-top: 50px;
font-size: 60px;
}
#showcase p{
font-size: 30px;
}
}