-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
64 lines (62 loc) · 916 Bytes
/
style.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
*{
box-sizing: border-box;
}
body {
margin:0;
padding:0;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
img{
max-width:100%;
height:auto;
}
h1{
font-size: 3em;
text-align:center;
color:white;
}
.logo-content{
width:200px;
height:30px;
margin-top: 10px;
}
header{
display: flex;
background-color: #3b319e;
height:92px;
padding:20px;
}
.menu{
margin-left: 30px;
}
.menu li {
list-style: none;
display: inline-block;
padding: 0 20px;
}
.cta{
margin-left: 8%;
}
.menu li a, .cta a{
text-decoration:none;
color:white;
font-size:19px;
display: inline-block;
}
.menu li a{
padding-bottom:-12px;
}
.cta a{
padding: 15px 35px;
background-color: transparent;
border: 1px solid #b4aaaa;
border-radius: 23px;
}
#live_demo{
margin-right: 10px;
}
.heros{
background-color: #550a8a;
height:auto;
padding: 20px 40px;
}