-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaboutme.css
161 lines (139 loc) · 2.95 KB
/
aboutme.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
body{
background-image: url("picture.jpg");
height: 100%;
width: 100%;
background-repeat: no-repeat;
background-size: cover;
}
.head{
width: 100%;
display: flex;
align-items: center;
justify-content: center;
}
.top{
list-style: none;
margin: 0px 10px;
padding: 10px 100px 20px 20px;
align-items: center;
text-align: center;
transition: all 1s;
}
a{
text-decoration: none;
color: black;
font-family: 'Sofia';
font-size: 40px;
font-weight: bolder;
border-bottom: 5px solid green;
transition: all 1s;
box-shadow: 4px 4px 4px green;
}
a:hover{
color: white;
border-bottom: 5px solid black;
box-shadow: 4px 4px 4px black;
}
.top:hover{
transform: scale(1.2);
}
.centre{
display: flex;
height: 50vh;
justify-content: center;
align-items: center;
font-size: 150px;
font-weight: bold;
font-family: "Pattaya";
transition: all 1s;
}
.centre:hover{
/* transform: scale(1.5);*/
color: firebrick;
transform: scaleY(1.6);
}
.foot{
width: 100%;
text-align: center;
font-size: 50px;
padding: 0;
margin-top: 100px;
font-family: "Annie Use Your Telescope";
font-weight: bolder;
transition: all 1s;
}
.foot:hover{
transform: skewX(-10deg);
color: purple;
box-shadow: 4px 4px 4px black;
cursor: none;
}
.container{
display: flex;
/* flex-wrap: wrap;*/
/* min-height: 0;*/
}
.text{
min-width: 0;
overflow: auto;
margin: 20px 0px 0px 40px;
height: 500px;
width: 500px;
padding: 0px 80px 0px 10px;
background-color: cornsilk;
font-size: 22px;
border-radius: 70px;
text-align: center;
transition: all 1s;
box-shadow: 10px 10px 10px brown;
font-family: 'Calistoga';
}
.text:hover{
color: yellow;
background-color: black;
transform: translateX(50px);
box-shadow: 10px 10px 10px red;
cursor: not-allowed;
}
.bubble{
margin: 20px 0px 0px 110px;
height: 470px;
width: 550px;
padding-top: 30px;
background-color: cornsilk;
font-size: 23px;
border-radius: 70px;
text-align: center;
transition: all 1s;
box-shadow: 10px 10px 10px brown;
overflow: auto;
font-family: 'Calistoga';
}
.bubble:hover{
color: yellow;
background-color: black;
transform: translateX(50px);
box-shadow: 10px 10px 10px red;
cursor: not-allowed;
}
.image{
display: flex;
align-items:center;
height: 500px;
width: 500px;
margin-bottom: 200px;
margin-left: 450px;
transition: all 1s;
border-radius: 30px;
border: 5px solid red;
}
.image:hover{
transform: scaleX(1.2);
border: 5px solid yellow;
cursor: none;
}
.tt{
font-size: 100px;
text-align: left;
font-family: cursive;
}