-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
119 lines (108 loc) · 1.83 KB
/
style.css
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
110
111
112
113
114
115
116
117
118
119
@font-face {
font-family: 'aller-regular';
src: url(Fonts/Aller_Rg.ttf);
}
@font-face {
font-family: 'aller-light';
src: url(Fonts/Aller_Lt.ttf);
}
body{
margin: 0;
padding: 0;
overflow-x: hidden;
}
#main-body{
background: #4293ff;
width: 100%;
height: 100vh;
}
/* nav */
header{
padding-top: 3vh;
}
.logo-icon{
background: #ffffff;
width: 35px;
height: 35px;
border-radius: 50%;
margin-left: 3rem;
}
.logo-txt{
margin-left: 6rem;
margin-top: -4.3vh;
font-family: 'aller-light';
font-size: 1.3rem;
color: white;
}
nav{
font-family: 'aller-light';
font-size: 0.5;
}
.nv-2{
padding-left: 7rem !important;
}
.get{
background: #ffffff;
color: #4293ff;
border-radius: 30px;
text-decoration: none;
display: inline-block;
transition: all .2s;
}
.get:hover {
transform: translateY(-3px);
box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
}
.get:active {
transform: translateY(-1px);
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.get::after {
content: "";
transition: all .4s;
}
.get::after {
background-color: #fff;
}
.get:hover::after {
transform: scaleX(1.4) scaleY(1.6);
opacity: 0;
}
.nav-link:hover{
color: #ffffff !important;
}
.nav-link{
position: relative;
}
.nav-link::after{
content: '';
position: absolute;
left: 0;
bottom: 0;
width: 100%;
height: 0.100rem;
background: #fff;
transform: scale(0, 1);
transition: transform 0.3s ease;
}
.nav-link:hover::after{
transform: scale(1, 1);
}
/* nav */
/* title & dtl */
.heading{
color: #fff;
}
h1{
font-family: 'aller-light';
letter-spacing: 0.100em;
}
p{
font-family: 'aller-light';
opacity: 50%;
}
img{
width: 65em;
height: auto;
}
/* title & dtl */