-
Notifications
You must be signed in to change notification settings - Fork 1
/
cf.css
55 lines (47 loc) · 893 Bytes
/
cf.css
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
53
54
55
.head{
margin-top: 50px;
font-family: 'Lobster', cursive;
color: white;
background-color: #755731;
border-radius: 10px;
border-width: 5px;
border-style: solid;
border-color: #755731;
}
.para{
margin: 100px;
font-family: 'Lobster', cursive;
color: white;
background-color: #755731;
border-radius: 10px;
border-width: 20px;
border-style: solid;
border-color: #755731;
}
#b{
background-color: #f4511e;
border: none;
color: white;
padding: 16px 32px;
text-align: center;
font-size: 16px;
margin: 4px 2px;
opacity: 0.6;
transition: 0.3s;
display: inline-block;
text-decoration: none;
cursor: pointer;
}
#b:hover {opacity: 1}
.container{
margin-top: 10px;
font-family: 'Lobster', cursive;
}
.board button{
width: 100px;
height: 100px;
border-radius: 50%;
border: 4px solid black;
background-color: gray;
margin: 2px;
}