forked from hngi/mini-classroom-TEAM-PRIAPUS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathteacher.css
123 lines (97 loc) · 1.82 KB
/
teacher.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
111
112
113
114
115
116
117
118
119
120
121
122
123
@import url(https://fonts.googleapis.com/css?family=Raleway:400,500);
html,
body {
background-color: #a9d7d1;
text-align: left;
align-content: center;
font-family: 'Raleway', Helvetica, sans-serif;
padding-bottom: 10px;
background-image: url("depositphotos_104190032-stock-photo-office-working-table.jpg");
color: rgb(68, 68, 68);
background-attachment: fixed;
background-position: 50% 50%;
background-repeat: no-repeat;
background-size: cover;
opacity: 0.999;
}
#dropdown,
#dropdown2,
#area {
width: 240px;
margin-left: 15px;
}
#age {
width: 12vw;
}
#first_name,
#email,
#dropdown {
width: 30vw;
}
#area {
width: 250px;
height: 100px;
}
#custom{
width: 30%;
}
/*For ScreenWidth Above 576px implemnet the MediaQueryBelow*/
@media (min-width: 576px) {
.col-sm-4 {
-ms-flex: 0 0 33.333333%;
flex: 0 0 33.333333%;
max-width: 33.333333%;
}
}
label#name {
text-align: right;
}
label#ageMove {
text-align: right;
}
label#email2 {
text-align: right;
}
label.col-form-label.col-sm-4 {
text-align: right;
}
label.col-form-label {
text-align: right;
}
/*For ScreenWidth Below 576px implemnet the MediaQueryBelow*/
@media (max-width: 576px) {
.col-sm-4 {
-ms-flex: 0 0 33.333333%;
flex: 0 0 66.6666%;
min-width: 33.333333%;
}
label#name {
text-align: left;
}
label#ageMove {
text-align: left;
}
label#email2 {
text-align: left;
}
label.col-form-label.col-sm-4 {
text-align: left;
}
label.col-form-label {
text-align: left;
}
#first_name,
#email,
#dropdown {
width: 40vw;
}
#age {
width: 15vw;
}
}
button.btn {
font-size: 16px;
}
#description {
font-weight: 500;
}