-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
52 lines (46 loc) · 888 Bytes
/
Copy pathstyles.css
File metadata and controls
52 lines (46 loc) · 888 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
body {
background: black;
font-family: Arial, Helvetica, sans-serif;
display: flex;
flex-wrap: wrap;
}
h1 {
color: white;
text-align: center;
width: 100%;
display: block;
}
h1:hover {
color: hotpink;
text-align: center;
width: 100%;
display: block;
}
a{
text-decoration: none; /*remove unerlining on anchor tags*/
color: whitesmoke; /*pick the color you want*/
}
a:hover{
text-decoration: none;
color: red;
}
.assign {
background-color: grey;
margin: 10px;
padding: 10px;
border-radius: 20px;
width: 20%;
box-shadow: 8px 8px brown;
display: block; /* instead of flex */
border-radius: 20px; /*curved corners*/
}
.assign img{
width: 200px;
margin: 10px;
border: 5px solid white;
}
.assign img:hover {
width: 200px;
margin: 10px;
border: 5px dotted red;
}