forked from medhavi0407/Healthcare_management_system
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcss1.css
28 lines (28 loc) · 767 Bytes
/
css1.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
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;1,200;1,300;1,700&display=swap');
:root{
--green:#16a085;
--black:#444;
--light-color:#777;
--box-shadow: 5rem .5rem 0 rgba(22,160,133, .2);
--text-shadow: 4rem .4rem 0 rgba(0, 0, 0, .2);
--border:.2rem solid var(--green);
}
*{
font-family: 'Poppins',sans-serif;
box-sizing: border-box;
text-transformation: capitalize;
transition: all .2s ease-out;
}
.header {
padding: 2rem 9%;
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 1000;
box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .1);
display: flex;
align-items: center;
justify-content: space-between;
background: #fff;
}