-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
123 lines (110 loc) · 1.88 KB
/
style.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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
}
body {
min-height: 100vh;
color: #252525;
background: #fcfcfc;
font-size: 16px;
overflow: hidden;
}
h2 {
font-size: 1.9rem;
font-weight: 400;
margin-top: 1.5rem;
text-align: center;
}
.titles {
position: relative;
display: flex;
align-items: center;
gap: 1em;
text-transform: uppercase;
overflow: hidden;
background: #eddfde;
width: 90%;
height: 3rem;
margin: auto;
font-size: 0.9rem;
font-weight: 400;
padding: 0.3em 0;
margin-top: 1.5rem;
}
.author-about {
font-size: 1.1rem;
width: 80%;
margin: auto;
margin-top: 1.5rem;
text-align: center;
}
.projects-container {
display: flex;
justify-content: center;
align-items: center;
gap: 1em;
width: 90%;
margin: auto;
}
.featured-heading {
text-align: center;
margin-top: 1.5rem;
}
.projects {
background: #eddfde;
transition: 0.7s ease;
border: 2px solid #eee;
border-radius: 5px;
width: 20rem;
height: 15rem;
margin-top: 1.5rem;
line-height: 15rem;
text-align: center;
transition: all 0.3s;
cursor: pointer;
}
.projects a {
color: black;
font-size: 1.5rem;
color: black;
text-decoration: none;
}
.projects:hover {
transform: scale(1.1);
background-color: pink;
}
.title {
position: absolute;
z-index: 1;
background: #eddfde;
left: 0;
padding: 0 15px;
font-size: 2rem;
}
.title-animated {
animation: slide 1s ease;
padding: 0 4.5rem;
font-size: 2rem;
}
.tech-stack {
width: 90%;
margin: auto;
margin-top: 2rem;
font-size: 1.5rem;
display: flex;
gap: 1rem;
align-items: center;
}
@keyframes slide {
0% {
opacity: 0;
transform: scale(1.2) translateX(-8rem);
}
100% {
opacity: 1;
transform: none;
}
}