-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.css
59 lines (51 loc) · 890 Bytes
/
App.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
.text{
text-align: center;
color: beige;
font-size: 8vw;
padding-top: 20px ;
}
.navbar{
width:100%;
margin:0;
background-color:black;
box-shadow: -2px -2px 5px;
padding: 0;
}
.navbar a {
color: white;
font-size: 20px;
margin: 0 10px;
flex-basis: 30px;
}
.navbar-nav a:hover{
-o-transition:.5s;
-ms-transition:.5s;
-moz-transition:.5s;
-webkit-transition:.5s;
transition:.5s;
box-shadow: 10px 10px 5px #888888;
}
.navbar-brand{
font-size:0px;
padding: 0 50px;
color: white;
width:40%;
letter-spacing:2px;
}
.title {
width: 100%;
height: 100%;
background-color: #000;
font-size: 100px;
color: #fff;
mix-blend-mode: multiply;
}
.hr-color{
height: 30px;
border-style: solid;
border-color: #8c8b8b;
border-width: 1px 0 0 0;
border-radius: 20px;
margin-left: 70px;
margin-right: 70px;
}