-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
69 lines (60 loc) · 1007 Bytes
/
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
body{
font-family: monospace;
}
h1 {
font-weight: bold;
padding: 1em;
font-size: 2em;
}
#welcome-section{
display: flex;
background-color: #115173;
justify-content: center;
color: #eee;
height: 100vh;
margin:-10px;
}
#navbar {
display: flex;
position: sticky;
top: 0;
left: 0;
background-color: #022c43;
margin:-10px;
}
#navbar a{
color: white;
padding: 1em;
font-size: large;
font-weight: bold;
}
#navbar a:hover {
color: #ffd700;
}
#projects {
display: flex;
position: sticky;
bottom: 0;
left: 0;
background-color: #022c43;
margin:-10px;
}
#projects a{
color: white;
padding: 1em;
font-size: large;
font-weight: bold;
}
#projects a:hover {
color: #ffd700;
}
.project-tile{
background-image: linear-gradient(to left, violet, indigo, blue, green, yellow, orange, red);
width: 80%;
}
@media (max-width: 768px){
.project-tile{
background-image: linear-gradient(to left, blue, green, yellow, orange, red);
width: 80%;
}
}