-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaboutus.css
109 lines (92 loc) · 1.82 KB
/
aboutus.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
body {
background-color: rgb(2, 58, 108);
}
.what {
background-color: aliceblue;
width: 85%;
margin-left: auto;
margin-right: auto;
padding: 30px;
padding-bottom: 25px;
margin-top: 30px;
border-radius: 10px;
}
.intro{
display:grid;
grid-template-columns: auto auto auto;
justify-content: space-evenly;
margin: 30px 50px;
}
.what{
height:200px;
}
.what h1 {
text-align: center;
color: rgb(8, 0, 255);
margin: 0px 0px 30px 0px ;
padding: 0%;
}
.what p {
text-align: center;
}
.info {
display: grid;
grid-template-columns: auto auto auto;
justify-content: space-evenly;
margin: 30px 50px;
}
.container {
background-color: aliceblue;
margin: 15px;
text-align: center;
padding: 10px;
border-radius: 10px;
}
.container h2 {
color: rgb(8, 0, 255);
margin-bottom: 25px;
}
.firstl {
color: rgb(8, 0, 255);
font-size: 30px;
}
nav {
background-color: #161f51;
color: rgb(255, 255, 255);
/* padding: 1em; */
position: fixed;
width: 100%;
margin-top:-30px;
margin-left: -10px;
}
.navall {
position: sticky;
}
nav ul {
list-style: none;
display: flex;
}
nav a {
text-decoration: none;
color: rgb(255, 255, 255);
margin-right: 1em;
}
.navspecial {
background-color: rgb(133, 98, 190);
padding: 9px;
border-radius: 20px;
margin-right: 30px;
margin-left: 15px;
padding-left: 10px;;
}
.navend {
display: flex;
margin-left: 50%;
justify-content: space-evenly;
}
.navend li a {
background-color: rgb(133, 98, 190);
padding: 9px;
border-radius: 20px;
margin-right: 15px;
}