-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathskills.css
161 lines (140 loc) · 2.51 KB
/
skills.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-color:black;
}
.container {
display: flex;
flex-direction: row;
gap: 15px 20px;
justify-content: center;
overflow: hidden;
}
.container button{
background-color:black;
color: white;
border: none;
font-family: 'Roboto Mono', monospace;
font-size: 15px;
border-radius: 15px;
width: 75px;
}
.container button:hover{
background-color:gray;
color: black;
transition: ease-in 170ms;
cursor: pointer;
border: none;
font-family: 'Roboto Mono', monospace;
border-radius: 15px;
}
*{
margin: 0.5vh;
padding: 0;
}
.containermain {
display: flex;
flex-direction: column;
}
.lol{
height: 20rem;
width: 20rem;
border-radius: 50%;
}
.para{
color: linen;
font-size: 20px;
text-align: center;
font-family: 'Open Sans', sans-serif;
}
.icons {
font-size: 36pt;
color: whitesmoke;
word-spacing: 15px;
}
.icons a:hover {
color: rgb(189, 189, 189);
transition: ease-in 170ms;
cursor: pointer;
}
.trial{
display: flex;
color: rgb(255, 255, 255);
align-content: center;
justify-content: center;
height: fit-content;
}
.animation{
display: inline-block;
width: fit-content;
}
h1{
font-family: 'Rubik', sans-serif;
font-size: 5vw;
overflow: hidden;
border-right: .15em solid rgb(255, 255, 255);
white-space: nowrap;
animation: typing 1.5s steps(18, end) forwards;
width: 0;
}
.imgcont
{
display: flex;
flex-direction: row;
justify-content: space-evenly;
flex-wrap: wrap;
width: 80vw;
}
.animg
{
height: 20vh;
width: 13vw;
padding: 10px;
}
.animg:hover
{
animation: jump 1s ease infinite;
}
@keyframes jump {
0% {
transform: scale(1);
opacity: 0;
}
60% {
transform: scale(1.2);
opacity: 1;
}
100% {
transform: scale(1);
}
}
@keyframes typing {
from{ width: 0%;}
to{width: 100%;}
}
a:link{
text-decoration: none;
color: red;
}
@media only screen and (max-width: 750px)
{
.imgcont
{
display: flex;
flex-direction: column;
justify-content: space-around;
align-items: center;
}
.container {
display: flex;
display: -webkit-flex;
display: -ms-flex;
flex-direction: row;
gap: 0rem;
align-items: center;
overflow-x: hidden;}
.animg
{
height: 20vh;
width: 25vw;
padding: 5px;
}
}