-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkaidensroom.css
66 lines (66 loc) · 1.57 KB
/
kaidensroom.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
56
57
58
59
60
61
62
63
64
65
66
.text{
font-family: Arial;
color: rgb(71, 95, 79);
font-style: italic;
font-weight: bold;
margin-right: 215px;
}
.buying{
border-width: 1px;
border-style: solid;
border-color: rgb(255, 255, 255);
background-color: rgb(50, 150, 50);
color: rgb(255, 255, 255);
padding-left: 20px;
padding-right: 20px;
padding-top: 10px;
padding-bottom: 10px;
border-radius: 20px;
font-weight: bold;
font-size: 15px;
cursor: pointer;
margin-bottom: 3px;
transition: background-color 0.2s, color 0.2s, border-color 0.2s;
margin-right: 100px;
}
.buying:hover{
background-color: rgb(255, 255, 255);
color: rgb(50, 150, 50);
border-width: 1px;
border-color: rgb(50, 150, 50);
}
.buying:active{
background-color: rgb(255, 255, 255);
color: rgb(66, 198, 66);
border-width: 1px;
border-color: rgb(66, 198, 66);
}
.More-Info{
border: none;
background-color: rgb(127, 127, 127);
color: rgb(255, 255, 255);
padding-left: 20px;
padding-right: 20px;
padding-top: 10px;
padding-bottom: 10px;
border-radius: 20px;
font-weight: bold;
font-size: 15px;
cursor: pointer;
transition: background-color 0.2s;
margin-right: 130px;
}
.More-Info:hover{
background-color: rgb(174, 174, 174);
box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}
.More-Info:active{
background-color: rgb(190, 190, 190);
box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}
.image{
border-radius: 10px;
vertical-align: top;
margin-right: 30px;
width: 207px;
}