-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
201 lines (182 loc) · 3.95 KB
/
index.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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
.container{
display: grid;
grid-template-columns: 1fr;
grid-template-rows: 840px 235px 300px;
grid-template-areas:
"hh"
"oo "
"ff";
}
.head{
grid-area: hh;
}
.middle-box{
grid-area: oo;
}
.footer{
grid-area:ff;
}
.baby{
color:cornsilk;
}
#about{
background: linear-gradient(90deg,
rgba(255, 255, 255, 0) 0%,
rgba(255, 255, 255, 0.2) 25%,
rgba(255, 255, 255, 0.2) 75%,
rgba(255, 255, 255, 0) 100%);
box-shadow: 0 0 25px rgba(0, 0, 0, 0.1),
inset 0 0 1px rgba(255, 255, 255, 0.6);
font-size: medium;
font-family: 'Courier New', Courier, monospace;
font-weight: 200;
}
.middle-box {
background: linear-gradient(rgb(110, 110, 247), rgb(155, 209, 155));
display: flex;
flex-direction: column;
align-items: center;
color: bisque;
font-family: Roboto, Georgia, 'Times New Roman', Times, serif;
}
.transpiracy {
width: 100%;
height: 100px;
background:url("https://www.vanseodesign.com/blog/wp-content/uploads/2011/10/background-3.jpg");
}
nav {
padding: 50px 0;
min-width: 500px;
}
nav ul {
background: linear-gradient(90deg,
rgba(255, 255, 255, 0) 0%,
rgba(255, 255, 255, 0.2) 25%,
rgba(255, 255, 255, 0.2) 75%,
rgba(255, 255, 255, 0) 100%);
box-shadow: 0 0 25px rgba(0, 0, 0, 0.1),
inset 0 0 1px rgba(255, 255, 255, 0.6);
padding-inline-start:75px;
}
nav ul li {
display: inline-block;
}
nav ul li a {
padding-left: 10px;
color: #FFFFFF;
font-size: 18px;
font-family: Arial;
text-decoration: none;
display:inline-block;
inline-size: 85px;
}
a:link{
text-decoration:dashed;
}
.avatar{
border:4px solid silver;
margin:auto;
border-radius: 100px;
}
h1{
font-family: Rancho, Georgia, 'Times New Roman', Times, serif;
font-size:40px;
}
#contact{
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
text-shadow: 2px 2px 2px blueviolet;
}
#credientials{
text-shadow: 2px 2px 2px blueviolet !important;
}
.image {
background-image: url("background.jpg");
height: 100%;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
filter: blur(6px);
-webkit-filter: blur(7px);
-moz-filter: blur(7px);
-o-filter: blur(7px);
-ms-filter: blur(7px);
}
.text {
color: #eeeeee;
font-weight: bold;
border: 3px solid #cccccc;
position: absolute;
top: 50%;
left: 65%;
transform: translate(-50%, -50%);
width: 90%;
padding: 20px;
text-align: center;
}
.copyright{
text-align: center;
}
@media(min-width:700px){
.container{
/* max-width: fit-content; */
display: grid;
grid-template-columns: 1fr;
grid-template-rows: 800px 235px 200px;
grid-template-areas:
"hh"
"oo "
"ff";
}
.head{
grid-area: hh;
}
.middle-box{
grid-area: oo;
}
.footer{
grid-area:ff;
}
.baby{
color: white;
}
.header{
height: 650px;
}
h1{
font-size: 80px;
}
nav ul li {
display: inline-block;
}
nav ul li a {
padding-left: 10px;
color: #FFFFFF;
font-size: 18px;
font-family: Arial;
text-decoration: none;
display: inline-block;
inline-size: 85px;
}
.links{
display: flex;
justify-content: space-evenly;
align-items:center;
flex-direction: row;
}
.text {
border: 5px solid #cccccc;
position: absolute;
top: 60%;
left: 50%;
transform: translate(-50%, -50%);
width: 90%;
padding: 20px;
text-align: center;
}
.middle-box{
width:100vw;
}
.footer{
width: 100vw;
}
}