-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
52 lines (46 loc) · 928 Bytes
/
style.css
File metadata and controls
52 lines (46 loc) · 928 Bytes
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
*{
margin:0;
padding:0;
box-sizing: border-box;
}
.navbar-brand{
font-weight: bold !important;
}
.navbar{
box-shadow: 0px 2px 5px 1px white !important;
}
.nav-link:hover{
color: rgb(236, 190, 36) !important;
}
.nav-link{
font-weight: bold !important;
}
.banner{
background-image: url('banner.jpg');
background-size: cover;
width:98.7vw;
height:100vh;
}
.box{
position:absolute;
top:50%;
left:50%;
transform: translate(-50%, -50%);
background-color: white;
opacity: 0.75;
width:40%;
height:40%;
padding:20px;
box-shadow: 1px 2px 3px 2px #575555 !important;
border-radius: 20px;
}
.text{
color:rgb(225, 170, 50);
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
.coltext{
color: black;
}
.banner .text h3{
font-size:1.3rem !important;
}