-
Notifications
You must be signed in to change notification settings - Fork 0
/
Hospital_Aboutpage.css
108 lines (101 loc) · 2.04 KB
/
Hospital_Aboutpage.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
*{
margin: 0px;
padding: 0px;
outline: 0px;
box-sizing: border-box;
font-family: "IBM Plex Sans", sans-serif;
}
body{
background-color:black;
max-width: 1440px;
margin: auto;
}
/* ................Navigation bar......................... */
.navigation{
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 5%;
margin: 20px;
}
.naviagtion_lists{
display: flex;
justify-content: space-between;
align-items: center;
gap: 55px;
}
nav ul li {
font-weight: 900;
font-size: 20px;
}
a{
text-decoration: none;
color: #20bc7e;
}
a:hover{
font-size: x-large;
border: 2px solid red;
border-radius: 10px;
padding: 2px 5px 2px;
-Webkit-box-reflect:below
1px linear-gradient(transparent,#0005);
box-shadow:0 0 5px #00f0fb, 0 0 15px #00f0fb, 0 0 25px #00f0fb, 0 0 100px #00f0fb;
}
/* ..............main-section.............. */
main {
height: 85vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 0 5%;
}
.main_heading{
text-align: center;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.main_heading h1{
margin-bottom: 20px;
color: #20bc7e;
}
.main_heading p{
margin-left: 200px;
margin-right: 200px;
color: bisque;
font-size: 18px;
font-weight: 400;
}
/* .....achieemnt cards............ */
.achievement{
display: flex;
align-items: center;
gap: 50px;
margin-top: 50px;
}
.achievementCard{
width: 200px;
height: 200px;
border-radius: 10px;
border: 1px solid red;
box-shadow: 0 0 40px whitesmoke;
flex-direction: column;
align-items: center;
justify-content: center;
}
.achievementCard h2 {
padding: 60px 30px 0px 30px ;
text-align: center;
font-size: 25px;
font-weight: 700;
color: #20BC7E;
}
.achievementCard p {
padding:0px 30px ;
text-align: center;
color: bisque;
font-size: 20px;
font-weight: 500;
}