-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcustomstylesheet.css
More file actions
73 lines (64 loc) · 1.25 KB
/
customstylesheet.css
File metadata and controls
73 lines (64 loc) · 1.25 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
/* __________________HEADER CSS STYLESHEET ____________________*/
.form-control-dark {
border-color: var(--bs-gray);
}
.form-control-dark:focus {
border-color: #fff;
box-shadow: 0 0 0 .25rem rgba(255, 255, 255, .2);
}
.text-small {
font-size: 85%;
}
.dropdown-toggle {
outline: 0;
}
.header-image {
background-image: url(“Universitylogo.jpg”);
background-position: left;
background-repeat: no-repeat;
position: relative;
background-size: cover;
}
/* __________________body____________________*/
body,h1,h2,h3,h4,h5 {
font-family: Arial, sans-serif;
}
h1 {
text-align: center;
padding: 15px 30px 20px; /*top left/right bottom*/
}
body{
padding: 50px 100px 50px 100px;
}
iframe {
aspect-ratio: 10/ 16;
height: 100%;
width: 100%;
}
/* _________________search____________________*/
.search{
position: relative;
box-shadow: 0 0 40px rgba(51, 51, 51, .1);
}
.search input{
height: 60px;
text-indent: 25px;
border: 2px solid #d6d4d4;
}
.search input:focus{
box-shadow: none;
border: 2px dodgerblue;
}
.search .fa-search{
position: absolute;
top: 20px;
left: 16px;
}
.search button{
position: absolute;
top: 5px;
right: 5px;
height: 50px;
width: 110px;
background-color: dodgerblue;
}