forked from BludIsAnLemon/lemons-gallery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
80 lines (67 loc) · 1.23 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
* {
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: 1280px;
height: 1920px;
min-width: 1280px;
min-height: 1920px;
max-width: 1280px;
max-height: 10000000px;
}
.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;
}
#extensions {
display: grid;
grid-template-columns: auto auto auto;
}