-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
105 lines (86 loc) · 2.24 KB
/
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
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
100
101
102
103
104
105
body {
font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
/* font type ^^^*/
text-align: center;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
/* horizontally and vertically aligns the image and words^^^ */
color: #333;
/* font color ^^^ */
background: linear-gradient(to right, #e55d87, #5fc3e4); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
/* color of the background ^^^ */
}
.card {
border: 4px solid rgb(104, 96, 212);
/* color of the border of the box ^^^ */
padding: 16px;
/* ensures that the words in box aren't on the edges of the box^^^ */
box-shadow: 5.5px 5.5px #e55d8885;
/* size and color of the shadow of the box ^^^ */
border-radius: 6px;
}
/* color of the title and hello font in dark mode */
.dark {
color: #5851DB;
background: linear-gradient(to right, #000000, #09112b, #18043f); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
/* color of the about me font in dark mode */
.dark > .card > a {
color: aliceblue;
}
img {
height: 275px;
/* height of the selfie ^^^ */
/* border-radius: 50%; */
}
a{
color:aliceblue;
text-decoration: none;
}
/* color of the About Me link ^^^*/
.socials {
padding : 16px 100px;
}
/* pads the space between social icons and About Me ^^^*/
#instagram {
color: #5851DB;
}
/* color of the insta logo */
.form {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
font-size: 18px;
border: 2px solid blue;
border-radius: 5px;
margin: 15px 0px;
}
.sidenav {
width: 150px;
position: fixed;
z-index: 1;
top: 20px;
left: 0px;
background: #eee;
overflow-x: hidden;
padding: 8px 0;
}
.sidenav a {
padding: 0px 8px 6px 16px;
text-decoration: none;
font-size: 15px;
color: #2196F3;
display: block;
}
.sidenav a:hover {
color: #064579;
}
.main {
margin-left: 140px; /* Same width as the sidebar + left position in px */
font-size: 28px; /* Increased text to enable scrolling */
padding: 0px 10px;
}
@media screen and (max-height: 450px) {
.sidenav {padding-top: 15px;}
.sidenav a {font-size: 18px;}
}