-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
59 lines (45 loc) · 1.01 KB
/
Copy pathstyle.css
File metadata and controls
59 lines (45 loc) · 1.01 KB
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
/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
HTML content. To learn how to do something, just try searching Google for questions like
"how to change link color." */
body {
background-color: rgb(161, 254, 235);
color: rgb(0, 0, 0);
font-family: Verdana;
text-align: center;
}
@font-face {
font-family: 'CustomFont';
src: url('Lekton/Lekton-Italic.ttf') format('truetype');
}
body {
font-family: 'CustomFont', sans-serif;
}
H2 { text-align: center }
.container {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.square {
width: 100px;
height: 100px;
background-color: blue;
}
.square:hover {
background-color: red;
}
.image-container {
/*display: flex; /* or display: inline-flex; */
margin-bottom: 10px;
text-align: center;
}
.image {
display: inline-block;
width: 350px;
height: 350px;
margin-right: 10px;
}
.hover-colorize:hover {
filter: brightness(1.25); /* Or use opacity(0.5) */
}