-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
79 lines (71 loc) · 1.25 KB
/
Copy pathstyle.css
File metadata and controls
79 lines (71 loc) · 1.25 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
h1, p{
font-family: Inter, sans-serif;
margin: 0px;
}
.Navigation-bar{
display: grid;
grid-template-columns: 2fr 100px 100px;
position: fixed;
top: 0px;
right: 0;
left: 0;
padding-top: 10px;
padding-bottom: 10px;
justify-content: center;
transition: 0.8s;
}
.Navigation-logo{
margin-left: 30px;
font-size: 22px;
font-weight: 700;
}
.Navigation-skills{
margin: 0;
font-size: 22px;
font-weight: 500;
}
.Navigation-about{
margin: 0;
font-size: 22px;
font-weight: 500;
}
.Navigation-bar.hidden {
transform: translateY(-100%);
}
.First-div{
margin-top: 75px;
margin-left: 20px;
}
.Second-div{
margin-left: 20px;
}
.Main-name {
font-weight: 700;
font-size: 3vw;
margin-bottom: 20px;
line-height: 5vw;
}
.Main-description {
margin-bottom: 60px;
font-weight: 500;
font-size: 20px;
}
.Email-button {
font-family: Inter, sans-serif;
font-size: 20px;
font-weight: 500;
background-color: white;
border: 1px solid black;
width: 270px;
padding: 20px 30px;
text-align: center;
border-radius: 35px;
cursor: pointer;
transition: .8s;
}
.Email-button:hover{
color: #fff;
}
body{
margin-bottom: 1000px;
}