-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.css
76 lines (66 loc) · 1.29 KB
/
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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Arial, Helvetica, sans-serif;
}
nav{
height: 80px;
background-color: black;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0px 50px 0px 100px;
}
nav .logo{
font-size: 33px;
color: white;
font-weight: 600px ;
font-family: Georgia, 'Times New Roman', Times, serif;
}
nav ul{
display: flex;
list-style: none;
}
nav ul li{
margin: 0px 25px;
}
nav ul li a{
color: #fff;
text-decoration: none;
font-size: 20px;
font-weight: 500;
letter-spacing: 1px;
padding: 10px 20px ;
border-radius: 5px;
transition: all 0.3s ease;
text-align: center;
}
nav ul li a:hover{
color: #1b1b1b;
background-color: #fff;
}
/**nav ul li button{
color: #fff;
text-decoration: none;
font-size: 15px;
font-weight: 500px;
letter-spacing: 1px;
padding: 8px 15px ;
border-radius: 50px;
transition: all 0.3s ease;
background-color: #337af1;
align-items:center;
**/
nav ul li button:hover{
color: #1b1b1b;
background-color: #fff;
}
h1{
height: 0px;
font-size: 50px;
margin: 20px 0px 20px 400px;
}
img{
width:100%;
}