-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
149 lines (126 loc) · 2.69 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
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
body, html {
padding: 0;
margin: 0;
height: 100%;
background-image: url("./assets/images/background.jpg");
background-position: 50% 100%;
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
}
* {
margin: 0;
padding: 0;
}
#cover h1 {
font-family: 'Comfortaa', cursive;
font-weight: 900;
font-size: 4rem;
color: #EDE8DF;
text-align: left;
padding: 1rem 5rem;
text-shadow: 2px 4px 4px #343B3B;
/* position: sticky; */
/* position: fixed; */
}
#cover h2 {
font-family: 'IBM Plex Sans', sans-serif;
color: #EDE8DF;
text-shadow: 2px 4px 4px #343B3B;
font-size: 5rem;
text-align: right;
padding: 0rem 5rem;
}
#cover h2 span {
color: #CB745F;
}
#cover h3 {
font-family: 'Inconsolata', monospace;
color: #EDE8DF;
text-shadow: 2px 4px 4px #343B3B;
font-size: 2rem;
text-align: right;
padding: 0rem 5rem;
}
.cover-content {
padding-top: 20rem;
padding-bottom: 30rem;
}
/* content block */
#content-block {
margin: auto;
/* background-color: #343B3B; */
/* height: 3000px; */
width: 95%;
/* display: inline-block; */
display: block;
}
#blocks {
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
/* grid-auto-rows: auto; */
grid-auto-rows: 1fr;
gap: 12px;
width: 100%;
}
.b-block {
background-color: #CB745F;
border-radius: 30px;
transition: transform .2s;
overflow: hidden;
}
.block-ratio {
aspect-ratio: 1;
}
.b-block p {
font-size: 2rem;
/* background-color: #343B3B; */
border-radius: 50px;
margin: 30px;
}
.normal {
background-color: #343B3B;
}
.about-me {
/* grid-area: 1 / 1 / 4 / 3; */
background-image: url("./assets/images/potrait.jpg");
background-size: cover;
background-position: center top;
grid-column: span 2;
grid-row: span 3;
}
.status {
/* grid-area: 1 / 3 / 3 / 6; */
grid-column: span 3;
grid-row: span 2;
background-image: url("./assets/images/status.jpg");
background-size: cover;
background-position: center top;
}
.github {
background-image: url("./assets/images/GitHub-Mark.png");
background-size: cover;
}
.linkedIn {
background-image: url("./assets/images/linkedin-icon_488108-5.avif");
/* background-size: cover; */
background-size: 150%;
background-position: center;
}
.project1 {
grid-column: span 3;
grid-row: span 2;
overflow: scroll;
word-wrap: break-word;
/* width: fit-content; */
/* white-space: pre-wrap; */
}
.b-block:hover {
transform: scale(1.05);
}
::-webkit-scrollbar {
width: 0;
}
/* label {
padding-top: 20rem;
} */