-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
51 lines (47 loc) · 721 Bytes
/
style.css
File metadata and controls
51 lines (47 loc) · 721 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
h1
{
color:#ffffff;
text-align: center;
}
body
{
background-color: hsla(200,100%,50%,1);
border: solid;
border-color:hsla(0,100%,100%,1);
}
a
{
display: inline-block;
text-decoration:none;
font-family: sans-serif;
color:#ffffff;
border: solid;
border-color: hsla(0,100%,100%,1);
padding: 10px;
width:400px;
height: 15px;
}
li
{
list-style: none;
padding-left:0px;
}
.box
{
background-color:hsla(200,100%,50%,0.7);
border:solid;
border-color:#ffffff;
margin:100px 400px;
padding: 20px;
width: 500px;
height: 370px;
}
div:hover
{
background-color: hsla(210,100%,50%,0.8);
}
a:hover
{
background-color: #ffffff;
color:hsla(200,100%,50%,0.8);
}