-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
107 lines (87 loc) · 1.43 KB
/
index.css
File metadata and controls
107 lines (87 loc) · 1.43 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
95
96
97
98
99
100
101
102
103
104
105
106
107
*{
margin: 0;
}
.background{
background-image: url("./brigg.jpg");
background-repeat: no-repeat;
background-size: cover;
background-position: center;
background-attachment: fixed;
width: 100%;
height: 100vh;
}
.background img{
margin-left: 60%;
position: fixed;
top: 30%;
width: 400px;
height: 80%;
margin-right: 10%;
}
.active{
text-decoration: underline;
border-color: #4a88d1;
}
.navbar a:hover{
border-bottom: 3px solid#32ff65;
}
.navbar a.active{
border-bottom: 3px solid #4ec516;
}
nav{
/* float: inline-end; */
padding-left: 10%;
padding-top: 5%;
}
.navbar{
margin-top: -30px;
float: right;
margin-right: 350px;
}
h1{
font-size: 25px;
font-weight: 400;
color: rgb(255, 255, 255);
letter-spacing: 0px;
}
p{
line-height: -1px;
margin-left: 10%;
margin-top: 10%;
color: #ffffff;
}
button{
color: #ffffff;
border-radius: 25px;
background: none;
border-color: #ffffff;
}
b{
line-height: 2px;
letter-spacing: 1px;
font-weight: 900;
}
@media only screen and (max-width: 1024px)
{
.navbar {
margin-top: -30px;
float: left;
margin-right: 10%;
margin-left: 10%;
}
.background img{
margin-left: 60%;
position: fixed;
top: 30%;
width: 400px;
height: 80%;
margin-right: 10%;
}
h1{
display: none;
font-size: 15px;
font-weight: 200;
color: rgb(255, 255, 255);
letter-spacing: 0px;
}
}