-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpages-component.css
58 lines (49 loc) · 995 Bytes
/
pages-component.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
.pages-component {
display: flex;
flex-direction: column;
align-items: center;
}
.pc-page {
position: relative;
min-height: 100vh;
width: 90vw;
margin-top: 10px;
padding-top: 100px;
padding-bottom: 10px;
display: flex;
flex-wrap: wrap;
gap: 10px;
align-items: normal;
justify-content: space-evenly;
border-radius: .5%;
background-color: white;
}
.pc-page-content {
min-height: 20vh;
max-width: 90%;
padding: 4px;
flex: 1 0 calc(100vw / 3);
display: flex;
flex-direction: column;
align-items: center;
background: linear-gradient(5deg, #efefef, white);
}
.pc-content-header {
align-self: stretch;
margin-bottom: 10px;
}
.portfolio-img {
height: 25vh;
border-radius: 4px;
cursor: zoom-in;
}
.contact-link {
width: 200px;
margin: 4px;
padding-bottom: 20px;
outline: 1px solid royalblue;
}
.contact-img {
margin: 4px;
transform: translateY(50%);
}