-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyles.css
59 lines (52 loc) · 1.14 KB
/
styles.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
html,body {
box-sizing: border-box;
background-image: url('./img/background.webp');
background-repeat: repeat;
background-size: cover;
display: flex;
flex-direction: column;
justify-content: center;
align-content: center;
padding: 0%;
margin: 0%;
width: 100%;
height: 100%;
font-family: 'Source Sans Pro', sans-serif;
color: #ffffff;
}
h1{
font-size: 35px;
font-weight: 1000;
}
h2 {
font-size: 20px;
font-weight: 500;
}
a {
padding: 0%;
margin: 1%;
}
img{
width: 32px;
height: 32px;
filter: invert(14%) sepia(85%) saturate(4797%) hue-rotate(281deg) brightness(62%) contrast(113%);
transition: all 0.5s;
}
img:hover{
filter: invert(10%) sepia(98%) saturate(5514%) hue-rotate(243deg) brightness(97%) contrast(154%);
}
img:focus {
filter: invert(13%) sepia(92%) saturate(7431%) hue-rotate(360deg) brightness(104%) contrast(107%);
}
#title {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
#social {
display: flex;
flex-direction: row;
align-content: center;
justify-content: center;
}