-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
99 lines (93 loc) · 1.43 KB
/
styles.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
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
96
97
98
99
.sidenav {
position: fixed;
z-index: 1;
top: 0;
left: 0;
background-color: rgb(247, 146, 100);
overflow-x: hidden;
padding-top: 20px;
height: 100vh;
}
.bg-grey {
color: rgb(65, 64, 63);
}
.bg-beige {
color: rgb(247, 146, 100);
}
.beige {
background-color: rgb(247, 146, 100);
}
h1 {
font-size: 3.5rem;
font-family: "Saira Extra Condensed";
}
.social-icon {
background-color: #495057;
color: #fff;
font-size: 1.5rem;
}
.social-icon:hover {
background-color: rgb(247, 146, 100);
}
a {
color: rgb(252, 214, 197);
}
a:hover {
text-decoration: none;
color: white;
}
.content {
top: 0;
margin-left: 25vw;
}
.border-5 {
border-width: 5px !important;
border-color: rgb(252, 190, 161) !important;
}
.dev-icons {
font-size: 3rem;
}
button {
background-color: rgb(247, 146, 100) !important;
}
button:hover {
color: #fff !important;
}
footer {
position: absolute;
}
.about-img {
display: none;
}
@media only screen and (max-width: 999px) {
.sidenav {
height: 10vh;
width: 100%;
overflow: visible;
}
#navbarSupportedContent {
background-color: rgb(247, 146, 100);
}
.dev-icons {
font-size: 1.5rem;
}
.social-icon {
background-color: #495057;
color: #fff;
font-size: 0.8rem;
}
.content {
margin-left: 5vw;
overflow: hidden;
}
footer {
position: absolute;
bottom: 0px;
}
.nav-img {
display: none;
}
.about-img {
display: block;
}
}