-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
96 lines (79 loc) · 1.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
body {
background: hsl( 0, 0%, 97% );
font-family: 'Rubik', sans-serif;
}
@media screen and (min-width: 760px) {
body {
margin-top: 50px;
}
.grid-container {
display: grid;
grid-template-columns: repeat(4, 1fr);
grid-auto-rows: minmax(100px auto);
gap: 10px;
max-width: 1380px;
margin: 0 auto;
grid-template-areas:
"about skills skills skills"
"about skills skills skills"
"education education employment employment"
"education education . .";
}
.skillImages {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
grid-template-rows: 1fr 1fr 1fr;
padding: 8px;
}
}
.grid-container > * {
background: lightblue;
padding: 30px;
text-align: center;
}
.grid-item {
box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
}
.grid-item:hover{
box-shadow: -1px 10px 29px 0px rgba(0,0,0,0.8);
}
.skillImages > div {
margin: 4px;
}
.skillImages > img {
text-align: center;
}
.about {
grid-area: about;
background: rgb(228, 152, 135);
font-weight: light;
font-size: 20px;
}
.skills {
grid-area: skills;
background: paleturquoise;
display: grid;
}
.education {
grid-area: education;
background: rgb(86, 216, 209);
}
.employment {
grid-area: employment;
background: rgb(137, 159, 255);
}
.card {
background: white;
box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
padding: 5%;
margin: 2%;
}
.card:hover{
box-shadow: -1px 10px 29px 0px rgba(0,0,0,0.8);
}
.card > p {
margin: 2%;
}
.card > h1 {
margin: 5%;
}