-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyling.css
56 lines (51 loc) · 1001 Bytes
/
styling.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
.body {
background-image: url(https://cdn-images-1.medium.com/max/1600/1*6iMeVDIqrceSlODy3dpKUw.gif);
min-height: 100%;
min-width: 1024px;
width: 100%;
height: auto;
position: fixed;
top: 0;
left: 0;
}
.body img{
height: 150px;
width: 150px;
border-start-end-radius: 30px;
}
.body h1{
font-family: Playfair Display;
color: #D796DB;
text-align: center;
margin-bottom: 100px;
}
.body p{
font-family: Fjalla One;
color: #6BEEEC;
margin-top: 20px;
text-align: center;
}
.body a{
border-color: aliceblue;
background-color: #6BEEEC;
width: 150px;
margin-right: 30px;
}
.body a:hover{
border-color: #6BEEAF;
background-color: #D796DB;
}
.button{
text-align: center;
}
@media (min-width: 480px) and (max-width: 768px){
.body {
min-height: 100%;
min-width: 480px;
width: 100%;
height: auto;
position: fixed;
top: 0;
left: 0;
}
}