-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
81 lines (80 loc) · 2.29 KB
/
about.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
---
layout: me
---
<link href='https://fonts.googleapis.com/css?family=Indie+Flower' rel='stylesheet' type='text/css'>
<style type="text/css">
body{
background-color: black;
}
div p,h1{
font-family: 'Indie Flower', cursive;
color: white
}
div h1{
margin-top: 2%;
}
.cream{
margin: 10px atuo;
border-radius: 15px;
width: 50%;
background-color: #BEDD3C;
}
.img{
transform:scale(0.8);
}
.cream, .img, .self-info-content{
transition:transform 2s;
}
.img:hover{
transform: scale(1.0);
}
.cream:hover{
background-color: #9E2C4B;
transform:translate(100px);
}
.self-info-title, .vertical-text, .self-info-content, .self-info, .img{float: left}
.self-info {margin-left:50px;margin-top: 10%;height: 150px;}
.self-info p {font-size:20px;}
.self-info-content {margin-left: 5px;}
.self-info-content p, .self-info-title {background-color: #BEDD3C;padding-left:2%;border-radius: 20px}
.self-info-content {transform:translate(100px);visibility: hidden;}
.self-info-content p:nth-of-type(1){transition-delays:0s;}
.self-info-content p:nth-of-type(2){transition-delay:0.1;}
.self-info-content p:nth-of-type(3){transition-delay:0.2s;}
.self-info-content, .self-info-title{height: 100%; padding-top: 7%; padding-left:2%;}
.vertical-text {margin-right:10px;}
.vertical-text p {margin: 0;}
.self-info:hover .self-info-content {transform: translate(0px);visibility: visible;}
</style>
<div><h1 style="text-align:center;">About Me</h1></div>
<div>
<div class="self-info">
<div class="self-info-title">
<div class="vertical-text">
<p>s</p>
<p>e</p>
<p>l</p>
<p>f</p>
</div>
<div class="vertical-text">
<p>i</p>
<p>n</p>
<p>f</p>
<p>o</p>
</div>
</div>
<div class="self-info-content">
<p>Name: Cho shin</p>
<p>Hobby: reading</p>
<p>Goal: GEEK & DESIGNER</p>
</div>
</div>
<div class="img">
<img src="{{site.baseurl}}/images/sanji.png"></img>
</div>
</div>
<!-- <center>
<h3 class="cream"><font class="font-face">Name: Cho shin</font></h3>
<h3 class="cream"><font class="font-face">Hobby: reading </font></h3>
<h3 class="cream"><font class="font-face">Goal: Geek \ Desginer</font></h3>
</center> -->