-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
124 lines (106 loc) · 2.08 KB
/
Copy pathstyle.css
File metadata and controls
124 lines (106 loc) · 2.08 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
@import url('https://fonts.googleapis.com/css2?family=Nunito&display=swap');
:root {
--margin-color: #0b345b;
--bkg-color: #eca7a7;
--secondary-color: #85c0ff;
--secondary-color-hover: #1b75b1;
--text-color-light: #fdfdfd;
--accent-color: #ffddcc;
--sans-serif-font-family: 'Nunito', sans-serif;
}
* {
margin: 0;
box-sizing: border-box;
scroll-behavior: smooth;
}
html, body {
height: 100%;
width: 100%;
padding: 10px;
font-family: var(--sans-serif-font-family);
font-size: 15px;
background: var(--bkg-color);
color: var(--text-color-light);
}
heading {
background-color: var(--primary-color);
font-size: 70px;
width: width;
text-align: center;
color: white;
}
h1 {
background-color: var(--primary-color);
font-size: 45px;
width: width;
margin: 20px auto;
text-align: center;
color: white;
}
h2 {
background-color: var(--primary-color);
font-size: 45px;
width: width;
margin: 10px auto;
text-align: center;
color: white;
}
.course_sector {
display: block;
width: 70%;
height: 40;
background: var(--accent-color);
margin-bottom: 60px;
position: relative;
}
.button {
position: absolute;
border: none;
text-align: center;
border-radius: 30px;
width: 150px;
height: 120px;
margin-top: 12%;
margin-bottom: 12%;
left: 50%;
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
font-family: var(--sans-serif-font-family);
font-size: 60px;
transition: 0.3s;
background-color: var(--secondary-color);
color: white;
cursor: pointer;
}
button:hover {
background-color: var(--secondary-color-hover);
}
.course-button {
margin-top: 20px;
}
.input_form {
border: none;
margin: 30px auto;
text-align: center;
font-size: 40px;
}
.label_form {
border: none;
height: 26px;
border-radius: 30px;
}
.button_form {
border: none;
padding: 10px;
border-radius: 8px;
color: var(--text-color-light);
background: var(--secondary-color);
}
.button_form:hover {
background-color: var(--secondary-color-hover);
}
showCourse {
background: #0a0606;
border-radius: 30px;
border: none;
}