-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
100 lines (98 loc) · 1.62 KB
/
style.css
File metadata and controls
100 lines (98 loc) · 1.62 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Montserrat', sans-serif;
color: white;
overflow: hidden;
}
.container{
width: 100vw;
height: 100vh;
background-image: url('./background.jpg');
background-repeat: no-repeat;
background-position: center;
background-size: cover;
}
header{
width: 100%;
background-color: rgba(211,204,204,0.2);
display: flex;
padding: 10px 40px;
}
nav{
display: flex;
flex-grow: 1;
}
nav ul{
margin-left: auto;
font-size: 18px;
align-self: center;
}
nav li {
list-style: none;
display: inline-block;
cursor: pointer;
margin-left: 70px;
}
nav li:last-child{
margin-right: 80px;
}
.logo{
font-size: 18px;
display: block;
width: 10px;
font-weight: 600;
cursor: pointer;
overflow: visible;
}
.logo span{
margin-left: 30px;
}
nav li:hover{
font-weight: bold;
border-bottom: 1px solid white;
}
#about{
background-color: rgba(108, 108, 108, 0.9);
height: 100%;
display: none;
}
h1{
margin-top: 40px;
text-align: center;
}
#about_section{
margin: auto;
width: 50%;
}
#services{
background-color: rgba(108, 108, 108, 0.9);
height: 100%;
display: none;
}
.wrapper{
position: relative;
left: 50%;
top: 10%;
transform: translateX(-50%);
width: 70%;
height: 100%;
}
.wrapper img:nth-of-type(1) {
float: left;
}
.wrapper img:last-of-type{
float: right;
padding-top: 200px;
}
#services1 {
margin: auto;
width: 60%;
}
#services2{
margin: auto;
width: 60%;
float: left;
padding-top: 100px;
}