-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
109 lines (93 loc) · 1.58 KB
/
Copy pathstyle.css
File metadata and controls
109 lines (93 loc) · 1.58 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
:root {
--main-color: #d3ad7f;
--black: #13131a;
--bg: #010103;
--border: 0.1rem solid rgba(255, 255, 255, 0.3);
font-size: 10px;
}
* {
font-family: roboto, sans-serif;
margin: 0;
padding: 0;
outline: none;
border: none;
text-decoration: none;
text-transform: capitalize;
transition: 0.2s linear;
}
body {
background-color: var(--bg);
}
.header {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 99;
border-bottom: var(--border);
}
.header section {
display: flex;
justify-content: space-between;
align-items: center;
padding-top: 1.5rem;
padding-bottom: 1.5rem;
}
section {
padding: 3rem 2rem;
margin: 0 auto;
max-width: 1200px;
}
.navbar a {
margin: 0 1rem;
font-size: 1.8rem;
color: #fff;
}
.navbar a:hover {
color: var(--main-color);
border-bottom: var(--main-color);
padding-bottom: 0.5rem;
font-size: 2rem;
}
.icons img:hover {
width: 40px;
height: 40px;
}
.btn {
background-color: var(--main-color);
color: #fff;
padding: 1rem 3rem;
border-radius: 0.5rem;
font-size: 1.7rem;
cursor: pointer;
margin-top: 1rem;
display: inline-block;
}
.home-container {
background: url("home-img.jpg");
;
background-position: center;
background-size: cover;
}
.home-container section {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
min-height: center;
height: 100vh
}
.content {
max-width: 60rem;
}
.content h3 {
color: #fff;
font-size: 6rem;
}
.content p {
color: #fff;
font-size: 2rem;
font-weight: 300;
line-height: 1.8;
padding: 1rem 0;
}