-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.scss
More file actions
94 lines (77 loc) · 1.42 KB
/
style.scss
File metadata and controls
94 lines (77 loc) · 1.42 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
@import "../node_modules/bootstrap/scss/bootstrap.scss";
@import url("https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@100;300;400;500;600;700;800&display=swap");
body {
background-color: #0f0930;
font-family: "JetBrains Mono", monospace;
color: rgb(196, 196, 196);
}
#navbar {
position: fixed;
top: 0;
width: 100%;
z-index: 1;
opacity: 0.8;
}
#main-container {
margin-bottom: 100px;
}
#about-section {
margin-top: 100px;
}
.about-header {
margin-bottom: 30px;
}
#name {
color: #ffca2c;
}
#services-section {
padding-top: 80px;
}
.services-header {
margin-bottom: 30px;
}
#projects-section {
padding-top: 80px;
}
.projects-header {
margin-bottom: 30px;
}
#contact-section {
padding-top: 100px;
}
@media screen and (max-width: 575px) {
#about-section {
font-size: 0.8rem;
}
#services-section {
font-size: 0.8rem;
}
#projects-section {
font-size: 1rem;
}
#copyright {
font-size: 0.8rem;
}
}
@media screen and (min-width: 576px) {
#about-section {
font-size: 1rem;
}
#services-section {
font-size: 1rem;
}
#projects-section {
font-size: 1rem;
}
}
@media screen and (min-width: 768px) {
#about-section {
font-size: 1.2rem;
}
#services-section {
font-size: 1rem;
}
#projects-section {
font-size: 1rem;
}
}