-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
127 lines (99 loc) · 2.21 KB
/
styles.css
File metadata and controls
127 lines (99 loc) · 2.21 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
header div.container {
color: white;
}
.navtitle {
color: whitesmoke;
}
.head {
background: radial-gradient(circle, rgba(20,20,9,1) 85%, rgba(55,16,16,1) 100%);
color: white;
}
nav a:hover{
color: rgb(227, 57, 57);
}
.btn-nav {
color: rgb(227, 57, 57);
}
.btn-nav:active {
transform: scale(0.97);
}
body {
background: radial-gradient(circle, rgba(20,20,9,1) 85%, rgba(55,16,16,1) 100%);
}
.title-text {
color: rgb(227, 57, 57);
}
.main-text {
color: whitesmoke;
}
.ul-head {
color: gray;
}
.btn-main:active {
transform: scale(0.97);
}
.cat-list li a{
color: whitesmoke;
}
.cat-list li a:hover{
color: rgb(227, 57, 57);
}
.foot {
background: radial-gradient(circle, rgba(20,20,9,1) 85%, rgba(55,16,16,1) 100%);
}
/* =================== POPULAR COURSES ===================== */
.courses {
margin-top:2rem;
}
.headingh2{
font-weight: 600;
font-size: 50px;
}
.courses__container {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2rem;
}
.course__image img{
border-radius: 20px;
}
/* .main-img{
height: 350px;
margin-top: 10px;
background-image: url(/images/2.jpg);
background-color: none;
background-position: center;
background-size: cover;
border-radius: 20px;
transition: var(--transition);
box-shadow: 0 0 30px 0.1px hsla(0, 0%, 0%, 0.955);
border-color: #08b9b94b;
border-top: 2px solid;
border-right: 2px solid;
border-color: #0077B5;
border-image:auto;
}
*/
.course{
background: var(--color-bg2);
text-align: center;
border-radius: 20px;
transition: var(--transition);
box-shadow: 0 0 30px 0.1px hsla(0, 0%, 0%, 0.955);
border-color: #08b9b94b;
border-top: 2px solid;
border-right: 2px solid;
border-color: #0077B5;
border-image:auto;
}
.course:hover {
background: var(--color-bg2);
box-shadow: 0 3rem 3rem rgba(0, 0, 0, 0.4);
}
.course__info {
padding: 2rem;
}
.course__info p {
margin: 1.2rem 0 2rem;
font-size: 0.9rem;
}