-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
115 lines (81 loc) · 1.97 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
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
body{
background-image: url(./images/station.jpg) ;
background-position: center;
background-repeat: no-repeat;
text-align: center;
margin-top: 7%;
}
h1{
color: rgb(248, 6, 26);
font-family: poppins, sans-serif;
font-weight: 700;
font-size: 50px;
}
h2{
color: rgb(50, 194, 134);
font-family: poppins, sans-serif;
font-weight: 700;
font-size: 70px;
}
button{
background-color: rgb(236, 71, 90);
border: none;
border-radius: 5px;
padding: 1%;
margin-left:3%;
font-family: poppins, sans-serif;
font-weight: 700;
color: #e9cfd7;
font-size: 30px;
width: 250px;
box-shadow: 2px 3px 1px rgb(202, 85, 85);
}
button:hover{
background-color: crimson;
width: 255px;
font-size: 31px;
}
p{
color: bisque;
font-size: 28px;
font-family: poppins, sans-serif;
font-weight: 700;
}
@media screen and (max-width:550px) {
body{
background-image: url(./images/station.jpg) ;
background-size: fit-content;
background-repeat: no-repeat;
margin-top: 20%;
}
h1{
color: rgb(248, 6, 26);
font-family: poppins, sans-serif;
font-weight: 700;
font-size: 30px;
}
h2{
color: rgb(50, 194, 134);
font-family: poppins, sans-serif;
font-weight: 700;
font-size: 60px;
}
button{
font-size: 98%;
width: 60%;
padding-top: 3%;
padding-left: 3%;
padding-right: 3%;
padding-bottom: 3%;
margin-top: 4%;
}
button:hover{
background-color: crimson;
width: 62%;
font-size: 99%;
}
p{
font-size: 99%;
}
}