-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.css
More file actions
94 lines (89 loc) · 1.55 KB
/
contact.css
File metadata and controls
94 lines (89 loc) · 1.55 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
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
body{
padding:0px;
margin:0px;
border:0px;
}
em{
color:rgb(187, 187, 68);
font-style: normal;
}
a:link{
color:#7e7c7c;
}
a:visited {
color:#7e7c7c;
}
a{
text-decoration: none;
}
#canvaswrapper{
font-family: 'BioRhyme', serif;
display: grid;
grid-template-columns: repeat(4,1fr);
grid-template-rows: repeat(4,1fr);
width: 100vw;
height:100vh;
background:black;
color:#7e7c7c;
background-image: url(/images/PortfolioBackground.svg);
}
#titlebox{
display:flex;
grid-area: 1/1/2/2;
justify-content: left;
color:rgb(218, 218, 218);
padding:10px
}
#title{
align-self: left;
font-size: x-large;
}
#linkbar{
display:flex;
grid-area: 2/1/4/2;
justify-content: flex-start;
}
#links{
display: flex;
flex-direction: column;
align-items: flex-start; /* Default */
justify-content: space-between;
width: 100%;
margin: 0;
padding: 10px;
}
#thumbnailwrapper{
display: flex;
grid-area: 4/1/5/2;
}
#thumbnail{
align-self: center;
text-align: center;
flex-wrap: wrap;
font-size: small;
padding:10px;
}
#content{
grid-area: 1/2/5/5;
display: flex;
align-items: center;
flex-direction: column;
justify-content: center;
}
#mainbody{
margin-left:15vw;
margin-right:15vw;
font-size: x-large;
flex-wrap: wrap;
}
#titlewrapper{
display:flex;
grid-area:1/2/2/5;
font-size:x-large;
justify-content: center;
margin-left:10vw;
margin-right:15vw;
}
#pagetitle{
align-self: center;
}