-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
56 lines (53 loc) · 943 Bytes
/
style.css
File metadata and controls
56 lines (53 loc) · 943 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
46
47
48
49
50
51
52
53
54
55
56
h3{
color: black;
font-size: 60px;
font-weight: bolder;
}
h1{
display: inline-block;
width: 150px;
background-color: white;
color: black;
height: 180px;
font-size: 110px;
border-radius: 30px;
margin-top: 30px;
margin-left: 5px;
}
body{
text-align: center;
background-color: #6289b5;
}
#myBtn,#mybtn1,#mybtn2{
border-radius: 5px;
padding: 7px;
box-shadow: 2px 5px silver;
width: 100px;
font-size: 20px;
font-weight: bold;
}
#myBtn{
background-color: yellowgreen;
}
#mybtn1{
background-color: red;
}
#mybtn2{
background-color: Teal;
}
@media only screen and (max-width: 600px) {
h1{
height: 100px;
width: 80px;
font-size: 50px;
padding-top: 25px;
}
h3{
font-size: 30px;
}
#myBtn,#mybtn1,#mybtn2{
width: 60px;
font-size: 15px;
font-weight: normal;
}
}