-
-
Notifications
You must be signed in to change notification settings - Fork 620
Expand file tree
/
Copy pathstyle.css
More file actions
executable file
·121 lines (115 loc) · 2.12 KB
/
Copy pathstyle.css
File metadata and controls
executable file
·121 lines (115 loc) · 2.12 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
/* We are using the 'Roboto' font from Google. This has already been added to your HTML header */
body {
font-family: 'Roboto', sans-serif;
-webkit-font-smoothing: antialiased;
}
/**
* Add your custom styles below
*
* Remember:
* - Be organised, use comments and separate your styles into meaningful chunks
* for example: General styles, Navigation styles, Hero styles, Footer etc.
*
* - When using Flexbox, remember the items you want to move around need to be inside a parent container set to 'display: flex'
*/
.header,
.ma-img,
.footer,
.icon{
padding: 0 1.5rem;
max-width: auto;
margin: 0 auto;
}
.header{
display: flex;
align-items: center;
justify-content: space-between;
height: 5rem;
margin-bottom: 1rem;
padding-top: 1rem;
}
nav{
display: flex;
width: 100%;
}
.navbar{
display: flex;
list-style: none;
font-size: normal;
color: lightgrey;
padding-left: 8rem;
}
.nav-li-a{
margin: 20px;
text-decoration: none;
color: gray;
}
.karma-logo{
max-height: 40px;
width: auto;
padding-right: 10rem;
}
.meet{
font-weight: bold;
}
.Store{
color: orange;
}
.ma-img{
display: flex;
background-image: url( "/img/first-background.jpg");
height: 500px;
background-size: cover;
color: white;
flex-direction: column;
justify-content: center;
align-items: center;
}
.learn-more{
background-color: rgb(235, 114, 66);
border-radius: 10px;
padding: 10px 20px;
margin-bottom: 5rem;
}
.icon-img{
max-height: 100px;
width: auto;
padding-bottom: 4rem;
flex-direction: row;
}
.p2{
margin-bottom: 3rem;
}
.icon{
display: flex;
justify-content:space-around;
}
.line{
color:#DCDCDC;
}
.icon-footer1{
max-height: 20px;
justify-content: center;
border: solid 1px rgb(224, 229, 229);
border-radius: 15px;
margin-left: 30px;
}
.footer,
.part2{
text-align: center;
}
.p1,
.part2{
text-align: center;
font-size: 40px;
}
.p1{
margin-bottom: 1rem;
}
.footer-p{
font-weight: bold;
}
.copyrights{
color: grey;
font-size: x-small;
}