-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathStudent_edit.css
More file actions
101 lines (87 loc) · 1.54 KB
/
Copy pathStudent_edit.css
File metadata and controls
101 lines (87 loc) · 1.54 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
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
.title{
font-size: 2rem;
color: #4070F4;
margin-top: 25px;
text-align: center;
}
body{
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start;
background-color: #EFEFEF;
padding-top: 80px;
}
header{
position: fixed;
top: 0; left: 0; right: 0;
background: #fffdfd;
box-shadow: 0 5px 10px rgba(0, 0, 0, .1);
padding: 0px 7%;
display: flex;
justify-content: space-between;
align-items: center;
z-index: 10;
}
header .logo{
font-weight: bolder;
font-size: 1rem;
background: none;
padding: 0;
margin: 0;
display: inline-block;
max-height: 100%;
line-height: 1;
}
header .logo img {
max-height: 75px;
width: auto;
height: auto;
}
.navbar{
margin-right: 0px;
}
.logout-form{
margin-left: 1150px;
}
.logout-button{
background-color: #FF4C4C;
color: white;
border: none;
padding: 10px 15px;
cursor: pointer;
font-size: 1rem;
border-radius: 5px;
}
.logout-button:hover{
background-color: #e30909;
}
.overlay{
display: none;
position: fixed;
top: 0;
}
input{
width: 50%;
padding: 10px;
margin: 10px;
border: 1px solid #ccc;
border-radius: 5px;
}
button{
background-color: #FF4C4C;
color: white;
border: none;
padding: 10px 15px;
cursor: pointer;
font-size: 1rem;
border-radius: 5px;
}