FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
JavaScript/tutorials/threejs/styles.css at main · denefeldl/JavaScript · GitHub
denefeldl
/
JavaScript
Public
forked from
iu5git/JavaScript
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
JavaScript
/
tutorials
/
threejs
/
styles.css
Copy path
More file actions
More file actions
Latest commit
History
History
History
73 lines (66 loc) · 1.2 KB
Breadcrumbs
JavaScript
/
tutorials
/
threejs
/
styles.css
Copy path
File metadata and controls
73 lines (66 loc) · 1.2 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
body
{
margin
:
0
;
font-family
:
Arial
,
sans-serif;
background
:
#
f5f7fa
;
}
header
{
background
:
#
283655
;
color
:
#
fff
;
padding
:
1.5
rem
0
;
text-align
:
center;
margin-bottom
:
2
rem
;
}
#
card-list
{
display
:
grid;
grid-template-columns
:
repeat
(
4
,
1
fr
);
gap
:
32
px
;
max-width
:
1400
px
;
margin
:
0
auto;
padding
:
0
32
px
32
px
;
}
.
card
{
background
:
#
fff
;
border-radius
:
18
px
;
box-shadow
:
0
3
px
16
px
#
0001
;
padding
:
1.5
rem
;
transition
:
box-shadow
.18
s
;
cursor
:
pointer;
min-height
:
320
px
;
display
:
flex;
flex-direction
:
column;
align-items
:
center;
}
.
card
:
hover
{
box-shadow
:
0
6
px
24
px
#
0003
;
}
.
card
.
card-title
{
font-size
:
1.1
rem
;
font-weight
:
600
;
margin
:
1
rem
0
0.5
rem
0
;
}
.
card
.
preview-canvas
{
width
:
140
px
;
height
:
140
px
;
background
:
#
dde6f2
;
border-radius
:
12
px
;
margin-bottom
:
1
rem
;
display
:
block;
}
/* Для карточки с двумя моделями */
.
model-pair
{
display
:
flex;
gap
:
12
px
;
justify-content
:
center;
align-items
:
center;
}
@media
(
max-width
:
900
px
) {
#
card-list
{
grid-template-columns
:
repeat
(
2
,
1
fr
);
}
}
@media
(
max-width
:
600
px
) {
#
card-list
{
grid-template-columns
:
1
fr
;
padding
:
0
8
px
24
px
;
}
}
Back
|
FazBrowse Home
|
New Git URL