forked from utkarshadeshmukh05/Faculty-Data-Management
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tech.css
112 lines (73 loc) · 1.5 KB
/
tech.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
#year{
padding: 2px;
width: 60%;
border: 1px solid lightgray;
}
#color{
background-color: #d40b0b;
}
body{
background-color: #f5f5f5;
}
#back{
background-color: #fefeff;
box-shadow: 0 3px 10px rgb(0 0 0 / 0.3);
}
#nav{
box-shadow: 0 3px 10px rgb(0 0 0 / 0.5);
}
@import url('https://fonts.googleapis.com/css?family=Josefin+Sans&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
list-style: none;
text-decoration: none;
font-family: 'Josefin Sans', sans-serif;
}
#nav2 span h3{
font-family: 'Josefin Sans', sans-serif;
}
.wrapper{
display: flex;
position: relative;
margin-top: 30px;
}
.wrapper .sidebar{
width: 200px;
height: 80%;
background-color: #d40b0b;
padding: 30px 0px;
position: fixed;
box-shadow: 0 3px 10px rgb(0 0 0 / 0.5);
}
.wrapper .sidebar ul li{
padding: 15px;
border-bottom: 1px solid rgba(0,0,0,0.05);
border-top: 1px solid rgba(255,255,255,0.05);
}
.wrapper .sidebar ul li a{
color:white;
display: block;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-size: larger;
text-decoration: none;
}
.wrapper .sidebar ul li a .fas{
width: 25px;
}
.wrapper .sidebar ul li:hover{
background-color: rgba(255, 255, 255, 0.534);
}
.wrapper .sidebar ul li:hover a{
color: #fff;
}
table,th,td{
border:1px solid black;
}
th{
text-align:center;
}
th,td{
padding:5px;
}