-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcourse.css
110 lines (93 loc) · 1.84 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
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
/* #course-main{
} */
.course-container{
display: flex;
justify-content: space-between;
margin: 40px;
margin-top: 60px;
}
.my-course{
align-items: center;
position: relative;
}
.my-course h2{
text-align: center;
text-transform: uppercase;
}
.my-table{
align-items: center;
width: 560px;
padding: 16px;
}
.my-table thead tr th{
background-color: #39603d;
color: #fff;
}
.my-table tbody tr:nth-child(odd){
background-color: #ccc;
padding: 12px;
}
.my-table tbody tr td, thead tr th{
padding: 10px 16px ;
}
.table-width{
width: 1000px;
margin-bottom: 20px;
}
.form-course{
width: 500px;
margin: 0 20px;
}
.form-course h2{
text-align: center;
text-transform: uppercase;
margin-bottom: 18px;
}
.form-course-form label{
font-size: 14px;
margin-right: 12px;
display: block;
}
.form-course-form input{
outline: none;
display: block;
width: 100%;
margin-top: 8px;
padding: 4px 16px;
font-size: 16px;
border-radius: 4px;
border: 0;
background-color: #ccc;
}
.form-course-form select{
background-color: #39603d;
padding: 1px 2px;
border-radius: 2px;
border: none;
outline: none;
}
.form-course-form textarea{
width: 491px;
height: 65px;
margin-top: 10px;
outline: none;
background-color: #ccc;
overflow: hidden;
border: none;
resize: none;
}
.form-course-form .enroll{
display: block;
background-color: #39603d;
padding: 8px;
font-size: 18px;
color: #ccc;
cursor: pointer;
line-height: 1.5rem;
letter-spacing: 0.05rem;
transition: 0.3s ease-in-out;
}
.form-course-form .enroll:hover{
color: #fff;
background-color: #2b4b2e;
}