-
-
Notifications
You must be signed in to change notification settings - Fork 620
Expand file tree
/
Copy pathstyle.css
More file actions
executable file
·104 lines (90 loc) · 2.04 KB
/
Copy pathstyle.css
File metadata and controls
executable file
·104 lines (90 loc) · 2.04 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
/* 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;
}
/*Header*/
.karam-logo{
width: 30px;
margin-left: 4em;
}
.nav{display: flex;
float: right;
margin-right: 3em;}
.nav-link {text-decoration: none;
color: black;
padding-left: 2em;}
.nav-item{
display: inline;
list-style-type: none;
}
.nav-link:hover{color: orangered;}
/*hero*/
.hero{
padding: 200px;
background-size: cover;
background-image: url("/img/first-background.jpg");
}
.hero h1{
margin-left: 340px;
color:white;
}
.hero p{
margin-left: 280px;
font-size: 20px;
margin-top: 0px;
color:white;}
.hero-button{
padding: 0.4em 1em;
border-style: none;
border-radius: 2px;
background-color: orangered;
color: white;
margin-left: 400px;}
/*icon*/
.section{
margin-top: 80px;}
.section-p{
font-size: 38px;
text-align: center;
}
.icon-imag{
margin-left: 3em;
width: 100px;}
.icon-discribtion{
font-size: 20px;
}
.section-icon{
display: flex;
padding-left: 7em;
}
.section-icon div{
padding-left: 7em;
padding-bottom: 3em;
border-bottom: 1px solid rgb(184, 180, 180);
}
/*footer*/
.social-media-icon{
border: 1px solid rgb(185, 179, 179);
padding: 5px;
width: 30px;
border-radius: 25px;
margin-left: 7px;
cursor: pointer;
}
footer h3{
text-align: center;
}
footer p{
color: rgb(178, 177, 177);
text-align: center;
}
/**
* 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'
*/