-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
53 lines (45 loc) · 1.02 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
* {
margin: 0;
padding: 0;
background-color: bisque;
}
.header h1 {
text-align: center;
margin-top: 130px;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
font-size: 60px;
}
button{
margin-top: 30px;
padding:20px;
padding-inline: 40px;
text-align: center;
display: flex;
font-size: 50px;
justify-content: space-evenly;
margin-inline: 440px;
background-color: red;
color: white;
}
button:hover{
cursor: pointer;
}
.header h2 {
text-align: center;
margin-top: 30px;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
font-size: 60px;
}
/* media query for mobile view */
@media only screen and (max-width: 480px) {
button{
margin-top: 30px;
padding:20px;
padding-inline: 30px;
text-align: center;
font-size: 40px;
margin-left: 150px;
background-color:red;
color: white;
}
}