-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
49 lines (42 loc) · 892 Bytes
/
styles.css
File metadata and controls
49 lines (42 loc) · 892 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
body {
background-color:rgb(233, 234, 255);
font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
display: flex;
flex-wrap: wrap;
}
h1 {
color: black;
text-align: center;
width: 100%;
display: block
}
h1:hover
{
color: lightblue;
text-align: center;
width: 100%;
display: block;
}
.assign {
background-color: rgb(173, 192, 230);
margin: 10px;
padding: 10px;
border-radius: 20px;
width: 20%;
box-shadow: 8px 8px lightblue;
display: block;
}
.assign img {
width: 200px;
margin: 10px;
border: 2px solid midnightblue;
}
.assign img:hover {
width: 200px;
margin: 10px;
border: 2px dotted black;
}
a {
text-decoration: none;
color: black;
}