-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
59 lines (51 loc) · 760 Bytes
/
Copy pathstyle.css
File metadata and controls
59 lines (51 loc) · 760 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
53
54
55
56
57
58
59
html , body{
height:100%;
width:96%;
margin:0 auto;
}
.image{
background:url('im1.jpg');
background-size:cover;
background-position:center;
width:100%;
height:100%;
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
text-align:center;
}
#welcome{
color:#fff;
margin-top:-60px;
}
.btn-success{
font-size:2em;
border-radius:10px;
}
.av{
background:black;
height:70px;
z-index:4;
width:100%;
position:relative;
}
#lst{
list-style:none;
position:absolute;
top:9px;
right:9px;
}
ul li{
display:inline;
color:orange;
font-size:2em;
font-family:arial;
margin-left:7px;
}
ul li:hover{
background:#6ca659;
border-radius:15px;
padding:8px;
border:2px double white;
}