forked from linkhanthtel/ea-learning-lessons
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
87 lines (74 loc) · 1.58 KB
/
Copy pathstyles.css
File metadata and controls
87 lines (74 loc) · 1.58 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
/* Main styles for index page */
/* Body and container styling */
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
max-width: 900px;
margin: 0 auto;
padding: 20px;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
min-height: 100vh;
}
.container {
background: white;
padding: 40px;
border-radius: 10px;
box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
/* Header styling */
h1 {
color: #667eea;
text-align: center;
margin-bottom: 10px;
}
.subtitle {
text-align: center;
color: #666;
margin-bottom: 40px;
}
/* Introduction box styling */
.intro {
background: #f0f4ff;
padding: 20px;
border-radius: 5px;
margin-bottom: 30px;
border-left: 4px solid #667eea;
}
/* Tips section specific styling */
.tips-section {
background: #fff9e6;
border-left-color: #ff9800;
}
/* Lesson section styling */
.lesson-section {
margin-bottom: 30px;
}
.lesson-section h2 {
color: #764ba2;
border-bottom: 2px solid #667eea;
padding-bottom: 10px;
}
/* Lesson list styling */
.lesson-list {
list-style: none;
padding: 0;
}
.lesson-list li {
margin: 15px 0;
}
.lesson-list a {
display: block;
padding: 15px 20px;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
text-decoration: none;
border-radius: 5px;
transition: transform 0.2s, box-shadow 0.2s;
}
.lesson-list a:hover {
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}
.lesson-number {
font-weight: bold;
margin-right: 10px;
}