-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtopic.css
More file actions
90 lines (78 loc) · 1.51 KB
/
Copy pathtopic.css
File metadata and controls
90 lines (78 loc) · 1.51 KB
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
height: 100%;
}
body {
font-family: 'Roboto', sans-serif;
background-color: #121212;
font-weight: bold;
line-height: 1.6;
color: #f5f5f5;
display: flex;
flex-direction: column;
min-height: 100%;
min-width: 800px;
overflow-x: auto;
overflow-y: auto;
background-image: url('.resources/background.jpg');
background-position: center;
background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed;
}
footer {
color: #fff;
font-weight: bold;
text-align: center;
padding: 1rem 0;
margin-top: 2rem;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
h1 {
color: #90caf9;
text-align: center;
font-size: 2rem;
margin-bottom: 20px;
font-weight: bold;
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
border-bottom: 2px solid #90caf9;
padding-bottom: 5px;
}
.topic-list {
list-style: none;
padding: 0;
margin: 20px 0;
}
.topic-item {
background-color: rgba(30, 30, 30, 0.8);
border: 1px solid #333;
border-radius: 4px;
padding: 20px;
margin-bottom: 20px;
transition: all 0.3s;
}
.topic-item:hover {
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.topic-title {
font-size: 1.5em;
margin-bottom: 10px;
color: #90caf9;
text-decoration: none;
}
.topic-title:hover {
color: #bbdefb;
}
.topic-description {
font-size: 1em;
color: #f5f5f5;
margin-bottom: 20px;
}