-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
95 lines (95 loc) · 1.31 KB
/
styles.css
File metadata and controls
95 lines (95 loc) · 1.31 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
/* CSS Reset */
* {
margin:0;
padding:0;
font-size:;
line-height:1;
box-sizing: border-box;
font-family: helvetica;
}
a {
text-decoration: none;
color: white;
}
a:hover {
color: red;
}
html {
max-height:100vh;
height: 100vh;
}
body {
max-height: 100vh;
color: white;
text-align: center;
background-repeat: no-repeat;
background-image: linear-gradient(to bottom right, #360033, #0b8793);
overflow: hidden;
}
nav {
background-color:;
height:;
overflow: hidden;
}
nav p {
padding: 1%;
margin: 0px;
float:left;
text-align:;
display:inline;
vertical-align:top;
}
nav ul{
padding: 1%;
margin: 0px;
float: right;
display:inline;
vertical-align:top;
}
nav li {
margin-top:;
display: inline;
}
.main-header {
overflow:hidden;
margin: auto;
width: 70%;
background-color:;
padding-top:15%;
}
#codepen {
padding-top:8%;
padding-bottom:0px;
margin-bottom:0px;
}
.main-content {
padding-top: 5%;
margin: auto;
width: 70%;
}
#about-me-bio {
width: 40%;
}
footer {
padding: 1%;
background-color:;
position: fixed;
left: 0;
bottom: 0;
width: 100%;
}
#other-projects{
margin:auto;
display:flex;
flex-direction: row;
flex-flow:center;
align-content: space-between;
}
.content-box {
border-radius:15px;
margin:auto;
margin-bottom:10px;
background-color:black;
height:175px;
width:250px;
}