-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathabout.css
More file actions
110 lines (96 loc) · 2.25 KB
/
about.css
File metadata and controls
110 lines (96 loc) · 2.25 KB
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
110
body{
background-color: darkseagreen;
background-image: url("Images/background.jpg");
}
h3{
font-size: 60px;
font-style: italic;
color: rgb(77, 0, 150);
padding-left: 15%;
padding-right: 15%;
margin-top: 20px;
margin-bottom: 20px;
text-shadow:5px -5px 10px rgb(5, 247, 255);
text-align: center;
text-decoration: underline;
text-decoration-style: dotted;
text-shadow: darkslateblue;
}
.counters {
background-color: cadetblue;
color: #fff;
text-shadow: 2px 2px 3px cornsilk;
padding: 40px 20px;
border: 3px lightskyblue solid;
margin-left: 2px;
margin-right: 2px;
}
.counters .container {
display: grid;
grid-template-columns: repeat(6, 1fr);
grid-gap: 30px;
text-align: center;
}
.counters .counter {
font-size: 45px;
margin: 10px 0;
}
@media (max-width: 1000px) {
.counters .container {
grid-template-columns: repeat(3, 2fr);
}
.counters .container > div:nth-of-type(1),
.counters .container > div:nth-of-type(2),
.counters .container > div:nth-of-type(3) {
border-bottom: 1px lightskyblue solid;
padding-bottom: 20px;
}
}
#abt{
font-size: 25px;
font-family: 'Times New Roman', Times, serif;
font-style: italic;
margin: 50px;
padding: 50px;
color: rgb(0, 255, 255);
text-align: justify;
background-color: rgba(0, 139, 139, 0.486);
box-shadow: 5px 5px 5px 5px whitesmoke;
}
.column {
position: relative;
float: left;
width: 50%;
margin: 0 auto;
padding-left: 10%;
padding-right: 10px;
background-color:rgba(168, 194, 194, 0.397);
vertical-align: middle;
}
.row{
margin-left: 200px;
margin-right: 200px;
background-color:rgba(168, 194, 194, 0.397) ;
vertical-align: middle;
}
.row::after {
content: "";
clear: both;
display: table;
vertical-align: middle;
}
h5{
color: rgb(8, 87, 8);
font-size: 25px;
margin-top: 40px;
margin-bottom: 30px;
}
b{
color: rgba(49, 45, 45, 0.979);
}
img{
width: 100%;
height: 80%;
vertical-align: middle;
padding-top: 30%;
}