-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadmincss.css
More file actions
45 lines (45 loc) · 874 Bytes
/
Copy pathadmincss.css
File metadata and controls
45 lines (45 loc) · 874 Bytes
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
.welcome{
background-image: linear-gradient(to right, rgba(0, 37, 245, 0.685), rgba(133, 3, 166, 0.678)), url(img/admin.jpg);
background-position: center;
background-repeat: no-repeat;
background-size: cover;
position: relative;
}
@media screen and (min-width:320px){
.welcome{
height: 35%;
}
h2{
font-size: 25px;
}
.hero-text {
text-align: center;
position: absolute;
top: 60%;
left: 50%;
transform: translate(-50%, -50%);
color: white;
}
}
@media screen and (min-width:600px){
.welcome{
height: 40%;
}
.hero-text {
top: 50%;
}
h2{
font-size: 30px;
}
}
@media screen and (min-width:1050px){
.welcome{
height: 50%;
}
h2{
font-size: 35px;
}
.hero-text {
top: 50%;
}
}