-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.css
80 lines (68 loc) · 1002 Bytes
/
about.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
nav{
background-color: #000;
overflow: auto;
background-size: cover;
}
nav ul{
float: right;
}
nav ul li{
display: inline-block;
padding: 18px 4px;
}
nav ul li a{
color: #fff;
font-size: 15px;
text-decoration: none;
transition: 0.25s;
padding: 3px;
}
a:hover ,a.active{
color: black;
background-color:#ffffff63;
border-radius: 3px;
box-shadow: 1px 1px 25px #ffffffc2;
}
nav h1{
color:red;
font-size: 17px;
line-height: 3.5em;
position: absolute;
left: 5px;
}
body{
background-color: #000;
background-size: cover;
text-align: center;
}
div.container{
width: 90vw;
/* height: 310px;*/
margin: 0px auto;
text-align: center;
color: #fff;
}
.container img{
width: 90vw;
height: 310px;
margin: 0px auto;
}
.container h1{
margin: 15px auto;
font-size: 30px;
font-style: normal;
}
.box p{
font-style: italic;
}
.container h1{
color: red;
}
.box h1{
color: #00ff33;
}