-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNext_html_css
61 lines (52 loc) · 1.13 KB
/
Next_html_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
/* General Styles */
.file-item {
border: 1px solid #ddd;
margin-bottom: 15px;
padding: 10px;
border-radius: 5px;
.file-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 10px;
.toggle-button {
padding: 8px 12px;
margin-top: 10px;
border: 1px solid #ddd;
border-radius: 4px;
background-color: #f0f0f0;
cursor: pointer;
transition: background-color 0.3s;
&:hover {
background-color: #e0e0e0;
}
}
.download-link {
display: inline-block;
margin-top: 10px;
padding: 8px 12px;
text-decoration: none;
border: 1px solid #ddd;
border-radius: 4px;
background-color: #f0f0f0;
cursor: pointer;
transition: background-color 0.3s;
&:hover {
background-color: #e0e0e0;
}
}
}
.file-content {
margin-top: 10px;
.file-pre {
background-color: #f0f0f0;
padding: 10px;
margin: 10px 0;
border-radius: 4px;
overflow: auto;
max-height: 300px;
width: 100%;
box-sizing: border-box;
}
}
}