-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
160 lines (108 loc) · 3.22 KB
/
index.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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
*{
margin: 0;
padding: 0;
outline: none;
box-sizing: border-box;
}
#header-bg {
height: 100vh;
background-size: 400%;
background-image: url(https://images.unsplash.com/photo-1518770660439-4636190af475?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=870&q=80);
background-repeat: no-repeat;
background-size: cover;
background-position: center;
background-color: #2b2c3d9c;
background-blend-mode: luminosity;
}
.nav-item{
padding: 0em 2em;
}
.nav-item-last{
padding: 0em 0em;
}
nav .navbar-nav li a{
color: #dee4cb !important;
font-size: 1.3em;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
nav .navbar-nav li a:hover {
color: white !important;
}
#logo span a {
color: #dee4cb !important;
}
#logo span a:hover {
color: white !important;
}
#first-page {
color: #fffefede;
background-color: #2f343ea8;
}
#post-header {
font-size: 2.5em;
font-family: cursive;
}
#post {
background-color: #97989673;
}
/* end of index.html css */
#header-bg-about {
height: 100vh;
background-size: 400%;
background-image: url(https://images.unsplash.com/photo-1523961131990-5ea7c61b2107?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=774&q=80);
background-repeat: no-repeat;
background-size: cover;
background-position: center;
background-color: #2b2c3d9c;
background-blend-mode: luminosity;
}
/* end of about.html css */
#header-bg-contact {
height: 100vh;
background-size: 400%;
background-image: url(https://images.unsplash.com/photo-1510906594845-bc082582c8cc?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=844&q=80);
background-repeat: no-repeat;
background-size: cover;
background-position: center;
background-color: #000000f3;
background-blend-mode: luminosity;
}
/* end of contact.html css */
#header-bg-post {
height: 100vh;
background-size: 400%;
background-image: url(https://images.unsplash.com/photo-1512682479844-0fa51f42b4a4?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1032&q=80);
background-repeat: repeat;
background-size: cover;
background-position: center;
background-color: #000000f3;
background-blend-mode: luminosity;
}
/* If the screen size is 1200px wide or more, set the font-size to 1.35 em */
@media (min-width: 1200px) {
.responsive-font-example {
font-size: 1.35em !important;
font-weight: bold;
}
}
/* If the screen size is smaller than 1200px, set the font-size to 1.25em */
@media (max-width: 1200px) {
.responsive-font-example {
font-size: 1.25em !important;
font-weight: bold;
}
}
/* If the screen size is smaller than 1080px, set the font-size to 1.1em */
@media (max-width: 1080px) {
.responsive-font-example {
font-size: 1.1em !important;
font-weight: bold;
}
}
/* If the screen size is smaller than 720px, set the font-size to 0.8em */
@media (max-width: 720px) {
.responsive-font-example {
font-size: 0.8em !important;
font-weight: bold;
}
}