-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhospital.css
79 lines (77 loc) · 1.4 KB
/
hospital.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
@import url('https://fonts.googleapis.com/css2?family=Baloo+Bhai+2:wght@400;500&family=Bree+Serif&family=Noto+Serif:wght@400;700&family=Poppins:ital,wght@0,100;0,300;0,400;0,500;0,600;0,700;1,200&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family:'Noto Serif', serif;
}
/*----------BMS HOSPITAL---------*/
body{
background-color: black;
color:white;
}
.hero
{
width:100%;
min-height: 100vh;
}
.container{
width:90%;
display: block;
margin:auto;
padding-top: 60px;
}
.article{
float:left;
width:55%;
padding-right: 25px;
}
.image-section{
width:45%;
float:right;
}
.image-section img{
width:100%;
height:auto;
float:right;
}
.article .title h1{
text-transform: uppercase;
font-size: 38px;
font-weight: 300;
}
.article .content h5{
margin-top: 30px;
color:white;
font-size: 22px;
font-weight: 500;
}
.article .content p{
margin-top: 10px;
font-size: 15px;
line-height: 1.5;
color:white;
}
@media screen and(max-width:700px)
{
.container{
width:80%;
display: block;
margin:auto;
padding-top: 50px;
}
.article{
float:none;
width:100%;
display: block;
margin:auto;
}
.image-section{
float:none;
width:100%;
margin-top: 50px;
}
.article .title h1{
font-size: 30px;
}
}