-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
181 lines (152 loc) · 3.33 KB
/
style.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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
font-family: "Poppins", 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
margin: 0;
padding: 0;
box-sizing: border-box;
font-weight: 400;
color: rgb(255,255,255);
scroll-behavior: smooth;
transition: 0.1s;
}
body, html{
background-size: 100%;
}
nav{
text-align: center;
font-size: 1.2rem;
font-weight: 800;
min-height: 70px;
background-color: rgba(0, 110, 255, 0);
}
.nav-item{
width: 150px;
}
.nav-item:hover{
font-size: 1.5rem;
/* box-shadow: 0 0 5px 2px rgba(255,255,255,.4); */
}
nav a:hover{
cursor: pointer;
}
body{
/* background-image: url("./images/test/pc-stet3.jpg"); */
/* filter: blur(4px);
-webkit-filter: blur(4px); */
/* background-position: center; */
background-repeat: no-repeat;
background-size: cover;
}
/* Little box around the M word */
.lil-box{
font-size: 5.0rem;
font-weight: 700;
font-style: normal;
padding: 2px;
border-radius: 5px;
border: 1px solid rgb(255,255,255);
}
/* Main section */
.main{
display: block;
/* justify-content: center;
align-items: center; */
height: 100vh;
width: 100vw;
background-color: rgba(0, 90, 150,0.3);
overflow-y: auto;
}
/* Color of the links BEFORE scroll */
.navbar-scroll .nav-link,
.navbar-scroll .navbar-toggler-icon,
.navbar-scroll .navbar-brand {
color: #fff;
}
/* Color of the links AFTER scroll */
.navbar-scrolled .nav-link,
.navbar-scrolled .navbar-toggler-icon,
.navbar-scrolled .navbar-brand {
color: #fff;
}
/* Color of the navbar AFTER scroll */
.navbar-scroll,
.navbar-scrolled {
background-color: #cbbcb1;
}
.mask-custom {
backdrop-filter: blur(5px);
background-color: rgba(13, 110, 253, .8);/*rgba(0, 0, 0,0.3);*/
}
.navbar-brand{
padding: 5px;
}
#logo{
width: 50px;
}
.active{
font-size: 1.5rem;
border: 1px solid white;
}
/* Style for about section */
.info-main{
height: 500px;
width: 80%;
border: 1px solid white;
justify-content: center;
align-items: center;
}
.info-card{
background-color: rgba(0,0,0, .1);
}
#info-image{
width: 400px;
}
/* style for all icons */
.icon{
width: 30px;
}
/* Style for home section */
#home{
height: 100vh;
display: flex;
align-items: center;
/* background-image: url("./images/test/pc-stet3.jpg"); */
background-image: url("./images/sample/blood-pressure.jpg");
background-repeat: no-repeat;
background-size: cover;
}
/* The section that has the text */
.content{
padding: 50px;
text-align: center;
margin: auto;
background-color: rgba(0, 0, 0,0.3);
padding-top: 100px;
padding-bottom: 100px;
}
/* The logo on front page */
.logo{
font-size: 4.0rem;
font-weight: 700;
font-style: normal;
}
.triangle-down{
transition: all .5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.triangle-down:hover{
transform: translateY(-5px);
}
/* About section styling */
#about{
background-color: white;
}
.about-img{
width: 700px;
}
/* Services section styling
#services{
background-image: url("./images/sample/door-349807.jpg");
}*/
/* #contact{
background-color: coral;
} */