-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathboo.css
More file actions
47 lines (46 loc) · 669 Bytes
/
boo.css
File metadata and controls
47 lines (46 loc) · 669 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
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
#nav {
margin: 0;
padding: 0;
}
#a {
display: flex;
justify-content: space-between;
flex-direction: row;
}
.im {
height: 400px;
width: 400px;
border-radius: 5px;
margin: 20px;
}
#text {
letter-spacing: 2px;
line-height: 1.5;
}
#text::first-letter {
color: black;
font-size:60px ;
}
#login {
border: solid black 2px;
border-radius: 5px;
padding: 10px;
}
ul li {
list-style: none;
cursor: pointer;
color: white;
line-height: 2;
letter-spacing: 2px;
}
ul li:hover {
color: dodgerblue;
}
#none {
margin-top: 20px;
}