-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathcourse.css
78 lines (77 loc) · 1.45 KB
/
course.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
.course{
display: flex;
flex-wrap: wrap;
align-items: center;
width: 100%;
background: #074972;
padding: 50px 0px;
}
.courseleft{
flex: 30%;
background: #bed5e4;
margin: 10px;
border-radius: 10px;
box-shadow:10px 5px 16px black;
}
.courseright{
flex: 30%;
background: #bed5e4;
margin: 10px;
border-radius: 10px;
box-shadow: 10px 5px 16px black;
}
.courseh2-heading{
padding: 20px 10px;
margin-left: 10%;
}
#courseh2{
margin-left: 20%;
}
#course1h2{
margin-left: 6px;
}
.courseh3-heading{
margin-left: 48%;
}
.courseli{
float: none;
}
.courseli a{
color: rgb(72, 97, 114);
}
.courseli a:hover{
color: rgb(15, 33, 68);
font-weight: bolder;
}
.course-container{
padding: 20px;
margin: 0px 100px;
}
.course-container h1{
padding: 10px;
margin-top: 10px;
text-align: center;
text-transform: uppercase;
background: linear-gradient(to right, goldenrod 10%, #074972 80%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
#paper{
height: 10px;
}
#paper i{
font-size: 30px;
color: goldenrod;
background: #074972;
padding: 20px;
border-radius: 5px;
box-shadow: 10px 10px 16px black;
position: relative;
top: 50px;
}
.course-para{
margin-left: 100px;
line-height: 30px;
padding-top: 20px;
text-align: justify;
}