-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
79 lines (67 loc) · 1.28 KB
/
styles.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
body {
background-color: #f8f9fa;
}
.thread-card {
margin-bottom: 1rem;
transition: transform 0.2s;
}
.thread-card:hover {
transform: translateY(-2px);
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.thread-meta {
font-size: 0.9rem;
color: #6c757d;
}
.comment-section {
margin-top: 2rem;
}
.comment {
padding: 1rem;
border-left: 3px solid #007bff;
margin-bottom: 1rem;
background-color: white;
}
.comment-meta {
font-size: 0.8rem;
color: #6c757d;
}
.auth-form {
max-width: 400px;
margin: 2rem auto;
}
.loading {
display: flex;
justify-content: center;
align-items: center;
min-height: 200px;
}
.loading::after {
content: "";
width: 40px;
height: 40px;
border: 4px solid #f3f3f3;
border-top: 4px solid #007bff;
border-radius: 50%;
animation: spin 1s linear infinite;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
.error-message {
color: #dc3545;
margin: 1rem 0;
padding: 0.5rem;
border-radius: 4px;
background-color: #f8d7da;
border: 1px solid #f5c6cb;
}
.success-message {
color: #28a745;
margin: 1rem 0;
padding: 0.5rem;
border-radius: 4px;
background-color: #d4edda;
border: 1px solid #c3e6cb;
}