forked from RAGHAVS1304/NightSprintHackathon_scriptors
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
109 lines (108 loc) · 1.86 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
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
html,body{
height: 100%;
width: 100%;
overflow: hidden;
font-size: 10px;
font-family: "gilroy";
}
.main{
position: relative;
width: 100%;
height: 100%;
display: flex;
}
.imgcontainer{
display: flex;
width: 100%;
height: 100%;
}
.rimg,.limg{
width: 50%;
object-fit: cover;
height: 100%;
}
img{
height: 100%;
width: 100%;
object-fit: cover;
}
.wrap{
display: flex;
position: absolute;
height: 100%;
width: 100%;
z-index: 10;
background-color: transparent;
}
.left,.right{
position: relative;
width: 50%;
height: 100%;
display: flex;
align-items: end;
justify-content: start;
padding: 1rem 1rem;
}
button{
border-radius: 2rem;
font-weight: 900;
width: 15rem;
height: 4rem;
font-family: "gilroy";
font-size: 3rem;
border: none;
transition: all 1s ease-in-out;
}
button:hover{
color: white;
background-color: black;
}
.bor{
-webkit-text-stroke-width: .2rem;
-webkit-text-stroke-color: black;
color: transparent;
margin: 1rem;
}
.content{
color: black;
font-size: 3rem;
line-height: 4rem;
}
.right{
display: flex;
justify-content: end;
align-items: center;
width: 50%;
padding: 1rem 1rem;
height: 100%;
}
nav>h3{
width: 20rem;
white-space: nowrap;
}
nav{
display: flex;
width: 100%;
font-size: 3rem;
font-family: "gilroy";
justify-content: space-between ;
align-items: center;
padding: 10px 10px;
z-index: 1;
font-weight: 600;
position: absolute;
}
#about{
text-decoration: none;
font-weight: 800;
font-size: 3rem;
color: white;
}
.white{
color: #fff;
}