-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
85 lines (70 loc) · 1.21 KB
/
style.css
File metadata and controls
85 lines (70 loc) · 1.21 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
*{
margin: 2px;
box-sizing: border-box;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode','Lucida Grande',
'Lucida Sans', Arial, sans-serif;
text-color: #424949;
}
nav {
color: black;
height: 80px;
display: flex;
justify-content: space-between;
align-items: center;
padding: 0rem calc((100vw-1300px)/2);
}
.logo img{
position: absolute;
margin-top: 15px;
margin-left: 10px;
}
nav a{
width: 100px;
padding: 20px 15px;
color: #424949;
text-decoration: none;
text-align: center;
}
li {
color: #424949;
}
ul {
padding-top: None;
padding-bottom: 20px;
}
p {
font-size: 15px;
color: #424949;
padding: 0 3em 2em 0
margin-left: auto;
margin-right: auto;
}
h2{
padding-top: 20px;
}
.profile-picture {
border-radius:50%;
display: block;
margin-left: auto;
margin-right: auto;
}
.hero-contrainer {
display: grid;
grid-template-columns: 1fr 1fr;
height: 95vh;
padding: 3rem calc((100vw - 1300px) / 2)
}
.colum-left {
display: flex;
flex-direction: column;
justify-content: center;
align-items: flex-start;
margin-left: auto;
margin-right: auto;
}
.colum-right {
display: flex;
justify-content: center;
align-items: center;
padding: 0rem 2rem;
}