-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
98 lines (84 loc) · 1.42 KB
/
index.css
File metadata and controls
98 lines (84 loc) · 1.42 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
body{
font-family: 'Arial';
}
.zone {
cursor: pointer;
color: black;
font-size: 40px;
transition: all 0.3s linear;
}
.zone:hover {
-webkit-box-shadow: rgba(0,0,0,0.8) 0px 5px 15px
}
/* NAV */
.sticky {
/* position: fixed; */
top: 0;
width: 100%;
}
.main-nav {
display: flex;
list-style: none;
font-size: 40px;
margin: 0;
}
@media only screen and (max-width:600px) {
.main-nav {
font-size: 0.5em;
padding: 0;
}
}
.push {
margin-left: auto;
}
li {
padding: 10px;
}
a {
color: #000;
text-decoration: none;
font-size: 20px;
}
.bold {
padding: 10px;
border: rgba(0,0,0,0.6);
border-radius: 10px;
}
.main-content{
display: flex;
align-items: center;
gap: 250px;
margin-left: 150px;
}
.main-content .main-text{
font-size: 60px;
font-weight: 800;
line-height: 50px;
}
.main-content .sub-text{
font-size: 20px;
font-weight: 400;
color: rgba(0, 0, 0, 0.5);
margin-bottom: 50px;
}
.main-content .btn{
color: #fff;
background-color: #000;
font-size: 16px;
width: 140px;
height: 50px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 10px;
margin-bottom: 100px;
}
.font {
font-family: Verdana, Geneva, Tahoma, sans-serif;
background-color: darkgoldenrod;
width: 140px;
height: 50px;
}
/*.dropdown{
display:flex;
}*/