-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathspecial.css
executable file
·55 lines (49 loc) · 899 Bytes
/
special.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
h1 {
font-family: 'Arial', sans-serif;
}
a {
display: inline-block;
margin: 10px;
}
.btn {
padding: 10px 20px;
background-color: rgb(150, 130, 166, 0.1);
color: #fff;
text-decoration: none;
border-radius: 90px;
margin-left: 765px;
margin-bottom: 260px;
transition: all 2s;
}
.btn:hover {
background-color: rgb(172, 151, 190, 0.1);
}
.item {
padding: 10px;
border-radius: 4px;
margin-bottom: 10px;
color: black;
background-color: rgba(240, 255, 240,0.589);
text-decoration: none;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
max-width: 150px;
min-width: 150px;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
}
.item img {
max-width: 135px;
min-width: 135px;
border-radius: 6px;
}
.item:visited,
.item:hover,
.item:link,
.item:active {
text-decoration: none;
color: dark-grey;
}