-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchess.css
More file actions
90 lines (85 loc) · 1.33 KB
/
chess.css
File metadata and controls
90 lines (85 loc) · 1.33 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
*{
margin: 0;
padding: 0;
}
body {
display: grid;
place-items: center;
overflow-x: hidden;
background : linear-gradient( #020353, #110231, rgb(11, 11, 80));
}
h1 {
margin: 10px;
color: rgb(250, 208, 19);
}
ul {
display: grid;
grid-template-columns: 1fr;
}
.divv {
display: flex;
}
li {
display: grid;
list-style: none;
place-items: center;
font-size: 0px;
}
.box {
margin: 5px;
width: 75px;
height: 75px;
}
#tog {
margin: 10px 0 ;
color: aliceblue;
}
.allimg {
width: 80px;
position: relative;
bottom: 5px;
display: flex;
justify-content: center;
align-items: center;
margin: auto;
}
.allpawn {
transform: scale(.7);
}
.authcont {
width: 100vw;
}
.author {
float: right;
margin-right: 50px;
}
@media (max-width: 650px) {
#tog {
margin-bottom: 70px;
}
.box {
height: 11vw;
width: 11vw;
}
.allimg {
width: 40px;
}
}
.follow-btn {
background-color: rgb(10, 4, 37);
color: rgb(247, 235, 235);
border: none;
padding: 10px 20px;
font-size: 16px;
cursor: pointer;
border-radius: 20px;
height: 90px;
}
.follow-btn a {
text-decoration: none;
color: #a09e1f;
font-weight: bold;
}
.follow-btn:hover {
background-color: rgb(9, 6, 19);
}