-
Notifications
You must be signed in to change notification settings - Fork 3
/
style.css
96 lines (81 loc) · 1.52 KB
/
style.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
* {
font-family: Helvetica, Arial, sans-serif;
text-align: center;
}
body {
margin: 40px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
width: 1500px;
height: auto;
min-width: 1500px;
max-width: 1500px;
}
.extension {
border-radius: 10px;
border-style: solid;
padding: 15px;
border-width: 5px;
border-color: dimgray;
box-shadow: 15px 15px 0px lightgray;
width: 400px;
display: block;
align-items: center;
justify-content: center;
margin: 0px 0px 25px 25px;
}
.extension img {
border-radius: 15px;
width: 350px;
margin-top: 25px;
}
.extension h2 {
font-weight: bolder;
}
.extension p.desc {
font-weight: bold;
}
.extension-button {
color: white;
border-style: none;
width: 125px;
height: 50px;
border-radius: 10px;
margin: 10px;
font-weight: bolder;
}
.extension-buttons:hover .extension-button {
cursor: pointer;
}
.extension-button:hover {
cursor: pointer;
}
.extension-button[data-copy="code"] {
background-color: green;
}
.extension-button[data-copy="url"] {
background-color: red;
}
.extension-button[data-copy="download"] {
background-color: orange;
}
.extension-button[data-copy="try"] {
background-color: skyblue;
}
.docsBtn {
color: black;
text-decoration: none;
border-style: solid;
border-radius: 5px;
box-shadow: 2.5px 2.5px 0px lightgray;
padding: 5px;
border-color: dimgray;
cursor: pointer;
}
#extensions {
display: grid;
grid-template-columns: auto auto auto;
}