-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
92 lines (76 loc) · 1.37 KB
/
index.css
File metadata and controls
92 lines (76 loc) · 1.37 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
:root {
--background: #070707;
--text: #EFF0FA ;
--highlights: #7C7C7C ;
}
body {
background: var(--background) ;
color: var(--text)
}
/* navigation bar */
.topnav {
background-color: var(--background);
height: 10%;
font-family: 'Barlow';
}
.topnav a {
justify-content: center;
color: var(--text);
text-align: center;
text-decoration: none;
letter-spacing: 0.1em;
font-size: 0.90em;
}
.topnav a:hover{
text-decoration: underline;
}
.topnav a.active {
color: var(--text);
}
#index{
padding-left: 50%;
padding-right: 10px;
}
#info{
padding-right: 20px;
padding-left: 5px;
}
#video{
padding-right: 20px;
}
/* navigation bar end */
/* text and background */
#main-text {
background-size: cover;
background: no-repeat center center fixed;
background: url("https://martinaoyhenard.netlify.com/crossfadewebsite/pngs/bcn.png");
background-blend-mode: darken;
transition: 6s;
padding-bottom: 20%;
padding-top: 10%;
margin-top: 10px;
}
.titles {
margin-left: 30%;
margin-top: 10%;
width: 30%;
height:30%;
color: white;
text-shadow: 1px 1px black;
}
h1, h5, h3 {
font-family: 'Barlow';
letter-spacing: 0.1em;
}
h1 {
margin-bottom: -15px;
margin-top: -5px;
}
h5, h3 {
font-weight: lighter;
letter-spacing: 0.1em;
}
@media all and (max-width: 770px) {
#main-text { display: none; }
}
/* text and background end */