-
Notifications
You must be signed in to change notification settings - Fork 10
/
createclass.css
83 lines (76 loc) · 1.6 KB
/
createclass.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
.container {
margin-top: 30px;
text-align: center;
border: 1px solid burlywood;;
color:cadetblue;
height: 500px;
font-family: 'Courier New', Courier, monospace;
width: 900px;
margin-left: 210px;
margin-right: 60px;
border-radius: 20px;
}
h1{
font-family: sans-serif;
}
select {
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
font-size: 18px;
padding-left: 10px;
}
input {
color: darkgray;
border-radius: 5px;
margin-top: 40px;
}
#enterClassName, .subjects, .age {
margin-bottom: 25px;
width: 400px;
height: 40px;
border-radius: 5px;
}
input:hover, select:hover {
background: cadetblue;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
color: black;
font-size: 20px;
transform: scale(1.1);
}
input {
font-size: 20px;
color: blue;
}
::placeholder{
padding-left: 20px;
}
.coursegroup {
margin-bottom: 25px;
}
a {
text-decoration: none;
display: inline-block;
padding: 8px 16px;
width: 20px;
height: 20px;
}
a:hover {
background-color: #ddd;
color: black;
}
.previous {
background-color: #f1f1f1;
color: black;
}
.next {
background-color: #4CAF50;
color: white;
}
.round {
border-radius: 50%;
}
input:invalid, select:invalid {
border: 2px dashed red;
}
input:valid {
border: 2px solid black;
}