-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
129 lines (128 loc) · 2.19 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
120
121
122
123
124
125
126
127
128
129
*{
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
body{
display: flex;
overflow: hidden;
}
header{
position: absolute;
top: 0;
left: 0;
width: 100%;
padding: 30px 100px;
display: flex;
justify-content: space-between;
align-items: center;
transition: 1s;
}
.logo{
position: relative;
font-size: 2em;
color: #bca898;
text-transform: capitalize;
font-weight: 700;
text-decoration: none;
letter-spacing: 1px;
}
.nav{
position: relative;
display: flex;
}
.nav li{
list-style: none;
}
.nav li a{
display: inline-block;
color: #bca898;
margin-right: 40px;
padding: 5px;
transition: 1s;
text-decoration: none;
}
.nav li a:hover{
border: 2px solid #8B6C2D;
}
.Active{
border: 2px solid #8B6C2D;
}
.content{
height: 100vh;
width: 50%;
background: #61543E;
}
.content h1{
position: relative;
top: 30%;
left: 30%;
color: #bca898;
font-size: 3em;
}
.img{
width: 50%;
height: 100vh;
background: #2F3D33;
}
.para{
height: auto;
position: relative;
width: 250px;
left: 0;
bottom: -400px;
background: rgba(255,255,255,0.06);
box-shadow: 0 15px 35px rgba(0,0,0,0.5);
backdrop-filter: blur(10px);
border: 1px solid rgba(255,255,255,0.25);
padding: 10px;
}
.img img{
width: auto;
height: 500px;
position: absolute;
top: 150px;
left: 620px;
}
.para h4{
position: relative;
font-size: 15px;
left: 150px;
color: #bca898;
padding: 5px;
}
.para p{
position: relative;
font-size: 15px;
left: 150px;
color: #bca898;
}
.img h1{
font-size: 10em;
color: #3a4b3fe1;
}
.para1{
height: auto;
position:absolute;
width: 250px;
right: 0;
bottom: 155px;
background: rgba(255,255,255,0.06);
box-shadow: 0 15px 35px rgba(0,0,0,0.5);
backdrop-filter: blur(10px);
border: 1px solid rgba(255,255,255,0.25);
padding: 10px;
}
.para1 h4{
position: relative;
font-size: 15px;
right: 50px;
color: #bca898;
}
.para1 p{
position: relative;
font-size: 15px;
right: 50px;
color: #bca898;
}