-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
111 lines (94 loc) · 1.65 KB
/
styles.css
File metadata and controls
111 lines (94 loc) · 1.65 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
body {
font-family: 'Roboto', sans-serif;
margin: 0 auto;
padding: 1.25rem;
line-height: 1.6;
background-color: #0f0f11;
}
.container {
background: #3c3b47;
padding: 2rem;
border-radius: 0.625rem;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
h1 {
color: white;
text-align: center;
margin-bottom: 0.625rem;
}
.subtitle {
text-align: center;
color: white;
margin-bottom: 2rem;
}
h2 {
color: white;
border-bottom: 2px solid #ddd;
padding-bottom: 0.625rem;
margin-top: 2rem;
}
.project {
margin: 1rem 0;
padding: 0.625rem;
background: #f9f9f9;
border-radius: 0.3125rem;
border-left: 4px solid #007acc;
}
.project a {
text-decoration: none;
color: #007acc;
font-weight: 500;
}
.project a:hover {
text-decoration: underline;
}
.description {
color: #666;
margin-top: 0.3125rem;
font-size: 0.875rem;
}
.github-link {
text-align: center;
margin-top: 2rem;
padding-top: 1.25rem;
border-top: 1px solid #ddd;
}
.github-link a {
color: #007acc;
text-decoration: none;
font-weight: 500;
}
.play-buttons {
margin-top: 0.625rem;
display: flex;
gap: 0.625rem;
}
.play-btn {
padding: 0.5rem 1rem;
background: #007acc;
color: white !important;
text-decoration: none;
border-radius: 0.25rem;
font-size: 0.8125rem;
font-weight: 500;
transition: background 0.3s ease;
}
.play-btn:hover {
background: #005a99;
text-decoration: none;
color: white !important;
}
.play-btn.editor {
background: #28a745;
}
.play-btn.editor:hover {
background: #1e7e34;
color: white !important;
}
.play-btn.app {
background: #6f42c1;
}
.play-btn.app:hover {
background: #5a32a3;
color: white !important;
}