-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhome.css
More file actions
115 lines (108 loc) · 1.87 KB
/
home.css
File metadata and controls
115 lines (108 loc) · 1.87 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
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');
background-size:cover;
}
#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;
}
#mainbody{
grid-area:1/2/5/5;
margin-top: 0vh;
margin-left:5vw;
}
#homewrapper{
grid-area: 2/2/4/4;
order:1;
}
#hometext{
display: flex;
background:black;
order: 0;
font-size:4.0vw;
background-color:transparent;
color: rgb(189, 189, 143);
}
#hometext>div{
display: flex;
}
@media (max-width:450px){
#thumbnail{
align-self: center;
text-align: center;
font-size: x-small;
padding:10px;
}
#hometext{
background:black;
order: 1;
font-size:6.0vw;
justify-self: right;
background-color:transparent;
color: rgb(189, 189, 143);
}
#homewrapper{
grid-area: 2/2/4/5;
display:flex;
flex-direction: column;
align-items: flex-end;
}
}