-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.css
83 lines (81 loc) · 1.52 KB
/
home.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
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');
*{
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: 'Roboto', sans-serif;
}
main{
display: flex;
flex-direction: row;
flex-wrap: wrap;
height: 100vh;
width: 100vw;
}
aside{
padding: 2rem;
height: calc(100% / 3);
width: calc(100% / 1);
background-color: #B5CBB7;
display: flex;
flex-direction: column;
flex-wrap: wrap;
justify-content: flex-start;
align-items: center;
}
aside > svg{
width: 200px;
height: 200px;
margin: 1rem;
}
.section1{
/* height: calc(100% / 3); */
width: calc(100% / 1);
background-color: #E7E08B;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
flex-wrap: wrap;
}
ul.skills{
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
flex-wrap: wrap;
min-height: 240px;
}
.section2 {
height: calc(200% / 3);
width: calc(100% / 3);
background-color: #D2E4C4;
}
.section3 {
height: calc(200% / 3);
width: calc(200% / 3);
background-color: #E4E9B2;
}
.section1 svg{
width: 100px;
height: 100px;
}
li{
border: 1rem black;
list-style: none;
margin: 1rem;
filter: grayscale();
text-align: center;
}
li:hover{
cursor: pointer;
padding-top: 1rem;
filter:contrast(200%);
}
div.tooltip{
opacity: 0;
border: 2px black;
}
.icon-html:hover div.tooltip{
opacity: 1;
}