-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblock.css
More file actions
38 lines (34 loc) · 705 Bytes
/
Copy pathblock.css
File metadata and controls
38 lines (34 loc) · 705 Bytes
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
.Block {
display: flex;
padding: 30px;
padding-right: 90px;
flex-direction: column;
font-size: 20px;
width: 100vw;
gap: 20px;
min-height: 100vh;
scroll-behavior: smooth;
}
.Block h1 {
width: 100vw;
font-size: 50px;
margin-bottom: 10px;
text-align: center;
}
.Dark-Theme {
background-color: #2a2a37;
color: rgb(233, 230, 229);
}
.Light-Theme {
background-color: rgb(233, 229, 229);
color: rgb(68, 67, 66);
}
.Block a img:hover {
transition: all 1s;
-webkit-transform: scale(1.1);
-moz-transform: scale(1.1);
-o-transform: scale(1.1);
-ms-transform: scale(1.1);
transform: scale(1.1);
border-radius: 20px;
}