-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstu.scss
125 lines (121 loc) · 3.6 KB
/
stu.scss
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
125
body{
// background-color: ;
p{
text-align: center;
font-size: 30px;
border-bottom: 3px solid black;
margin-bottom: 0px;
padding-bottom: 30px;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;;
}
.cont{
display: grid;
grid-template-columns: 50% 50%;
.student{
border: 1px solid black;
// background-color: rgb(255, 148, 49);
border-radius: 10px;
color: black;
// margin:150px 60px 100px 50px;
// padding: 60px 0px 90px 100px;
display: grid;
grid-template-rows: 30% 60% 10%;
height: 450px;
width: 300px;
margin-top: 40px;
margin-left: 300px;
p{
text-align: center;
// font-weight: 200;
font-size: x-large;
background-color: #fd3a69;
padding-top: 45px;
width: 300px;
font-family: cursive;
}
form{
width: 300px;
padding-left: 18px;
padding-top: 50px;
input{
border: none;
// background-color:rgb(255, 148, 49);
border-bottom: 2px solid black;
width: 250px;
height: 30px;
outline: none;
}
button{
height: 35px;
width: 90px;
margin-top: 40px;
border-radius: 15px;
&:hover{
background-color: #fd3a69;
outline: none;
font-size: 14px;
}
}
}
.footer{
background-color: #fd3a69;
width: 300px;
border-bottom-left-radius: 10px ;
border-bottom-right-radius: 10px;
}
}
.faculty{
border: 1px solid black;
// background-color: rgb(255, 148, 49);
border-radius: 10px;
color: black;
// margin:150px 60px 100px 50px;
// padding: 60px 0px 90px 100px;
display: grid;
grid-template-rows: 30% 60% 10%;
height: 450px;
width: 300px;
margin-top: 40px;
margin-left: 75px;
p{
text-align: center;
// font-weight: 200;
font-size: x-large;
background-color: #fd3a69;
padding-top: 45px;
width: 300px;
font-family: cursive;
}
form{
width: 300px;
padding-left: 18px;
padding-top: 50px;
input{
border: none;
// background-color:rgb(255, 148, 49);
border-bottom: 2px solid black;
width: 250px;
height: 30px;
outline: none;
}
button{
height: 35px;
width: 90px;
margin-top: 40px;
border-radius: 15px;
&:hover{
background-color: #fd3a69;
outline: none;
font-size: 14px;
}
}
}
.footer{
background-color: #fd3a69;
width: 300px;
border-bottom-left-radius: 10px ;
border-bottom-right-radius: 10px;
}
}
}
}