-
Notifications
You must be signed in to change notification settings - Fork 0
/
colors.html
150 lines (112 loc) · 4.66 KB
/
colors.html
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
<!DOCTYPE html>
<!--
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
-->
<html>
<head>
<title>TODO supply a title</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css2?family=Inconsolata:wght@300&family=Raleway:wght@100&display=swap" rel="stylesheet">
<style>
body{
background-color: white;
background-image: url(https://images.unsplash.com/photo-1601662528567-526cd06f6582?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=658&q=80);
background-size: 25% auto;
background-repeat: repeat;
}
a{
color: inherit;
text-decoration: underline;
text-decoration-color: white;
}
#linear{
position: relative;
border-radius: 3%;
width: 250px;
height: 450px;
left: 50%;
top: 50px;
margin-left: -125px;
background: transparent;
z-index: 1;
overflow-x: hidden;
overflow-y: hidden;
box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px;
}
#hello{
position: absolute;
right: 0px;
width: 900px;
height: 900px;
background: linear-gradient(35deg, #aa4b6b, #6b6b83, #3b8d99);
z-index: -1;
animation-name: moving-background-1;
animation-duration: 2.5s;
animation-iteration-count: infinite;
}
#greeting{
font-family: 'Inconsolata', monospace;
font-family: 'Raleway', sans-serif;
margin-left: 10px;
margin-top: 25px;
z-index: 1;
}
.writing{
z-index: 1;
color: white;
margin-left: 10px;
margin-right: 10px;
}
hr{
margin-top: -14px;
opacity: 0.9;
margin-left: 10px;
margin-right: 10px;
}
.content{
font-family: 'Inconsolata', monospace;
}
#last{
position: absolute;
bottom: 3%;
width: 100%;
}
.socials{
float: left;
text-align: center;
width: 50%;
}
@keyframes moving-background-1{
0%{
transform: translate(0px, 0px);
}
50%{
transform: translate(50%, -50%);
}
100%{
transform: translate(0px, 0px);
}
}
</style>
</head>
<body>
<div id="linear">
<div id="hello">
</div>
<div class="witing">
<h1 id="greeting" class="writing">Hello!!</h1>
<hr class="writing">
<p class='writing content'>Have an idea you'd like to materialize? </p><!-- comment -->
<p class='writing content'>Need to make a webpage for it?<p>
<p class='writing content'>Contact <a target="_blank" href="mailto:[email protected]"> me</a> to help you materialize your ideas and bring you closer to your goals asap!</p>
</div>
<div id="last">
<div class="instagram socials"><a target="_blank" href="https://www.instagram.com/tah5in/"><img width="50" src="images/instagram-white.png" alt="Instagram link"/></a></div>
<div class="facebook socials"><a target="_blank" href="https://www.facebook.com/tahsin.hasem.aonim"> <img width="50" src="images/facebook.png" alt="Facebook link"/> </a></div>
</div>
</div>
</body>
</html>