-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
42 lines (42 loc) · 784 Bytes
/
style.css
File metadata and controls
42 lines (42 loc) · 784 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
* {
margin: 0;
padding: 0;
font-family:initial;
}
h1 {
font-size:40px;
text-align:center;
color:cyan;
background-color:gray;
}
h2{
text-align: center;
color:darkviolet;
}
h3{
color:black;
text-align: right;
}
#btn {
display: block;
color: red;
font-family: Georgia, serif;
font-size: 34px;
border:3px;
border-style: solid;
border-color: lightseagreen;
background-color: rgb(0, 255, 200);
text-align: center;
}
img{
border-radius: 50px;
}
html{
background-image: url('https://tse4.mm.bing.net/th?id=OIP.gJxFBtslbyl-4oOZZDzGVQHaDX&pid=Api&P=0&w=381&h=174');
}
@media only screen and (max-width:600px)
{
img{
width:300px;
}
}