-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
65 lines (65 loc) · 939 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
#welcome-section{
height: 100vh;
width: 100%;
background-color: yellow;
text-align: center;
font-family: 'Caveat', cursive;
margin: auto;
font-size: 50px;
}
#projects{
background-color:red;
height: 100vh;
}
h2{
font-size: 40px;
font-family: 'Caveat', cursive;
text-align:center;
}
#project-write{
padding-top: 10%;
text-decoration: underline;
}
.first{
height: 50vh;
}
.row{
display:flex;
}
.project-tile{
flex: 33.33%;
padding: 5px;
}
#navbar{
display:flex;
position:fixed;
top:0;
width: 100%;
background-image: linear-gradient(90deg, white, grey);
}
.nav{
flex: 33.33%;
padding: 5px;
text-align:center;
}
a{
text-decoration:none;
color:black;
font-family: monospace;
font-size: 30px;
}
#profile{
height:100vh;
background-color: blue;
}
#github{
align:center;
border: solid;
width: 10%;
height:10%;
}
@media screen and (min-width: 480px){
body{
h1: 40px;
}
}