forked from Nandini-13/Byte-Hacks-Project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
byte.css
57 lines (54 loc) · 967 Bytes
/
byte.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
html{
scroll-behavior: smooth;
}
body{
font-family: 'Roboto', sans-serif !important;
}
#navigation {
background-color: white;
color: black !important;
position: fixed;
z-index: 10;
width: 100%;
top:0;
}
#brand {
font-size: 250%;
}
.tags {
color: black !important;
font-size: 120%;
}
#home {
background-attachment: fixed;
background-size: cover;
background-image: url(background.jpg);
height: 100vh;
padding: 20%;
text-align: center;
align-items: center;
justify-content: center;
}
#about {
background-attachment: fixed;
background-size: cover;
background-image: url(about.jpg);
/* opacity: 0.8; */
height: 90vh;
padding: 10%;
padding-top: 5% !important;
}
#content {
display: flex;
}
#left {
float: left;
width: 40%;
text-align: center;
}
#right {
float: right;
margin-left: 20%;
width: 40%;
text-align: center;
}