forked from varshit97/iiithmess
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
96 lines (83 loc) · 1.65 KB
/
Copy pathmain.css
File metadata and controls
96 lines (83 loc) · 1.65 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
.buttonClass {
background-color: #4CAF50;
border: none;
width: 12em;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
border-radius: 10px;
}
.buttonClass:active {
background-color: #3e8e41;
box-shadow: 0 5px #222;
transform: translateY(4px);
}
.buttonClass:hover {
-webkit-box-shadow: inset 0 0 0 1px #176b0a,0 2px 5px #124709;
-moz-box-shadow: inset 0 0 0 1px #176b0a,0 2px 5px #124709;
box-shadow: inset 0 0 0 1px #176b0a,0 2px 5px #124709;
}
.dropbtn {
background-color: #4CAF50;
color: white;
padding: 16px;
font-size: 16px;
border: none;
cursor: pointer;
border-radius: 10px;
}
.dropdown {
position: relative;
display: inline-block;
border-radius: 10px;
}
.dropdown-content {
display: none;
position: absolute;
min-width: 120px;
}
.dropdown:hover .dropdown-content {
display: block;
}
table{
width:100%;
table-layout: fixed;
}
.tbl-header{
background-color: rgba(255,255,255,0.3);
}
.tbl-content{
height:600px;
overflow-x:auto;
margin-top: 0px;
}
th{
padding: 20px 15px;
text-align: left;
font-weight: 500;
font-size: 20px;
color: #fff;
text-transform: uppercase;
}
td{
padding: 15px;
text-align: left;
vertical-align:middle;
font-weight: 300;
font-size: 20px;
color: #fff;
border-bottom: solid 1px rgba(255,255,255,0.1);
}
body{
background: -webkit-linear-gradient(left, #25c481, #25b7c4);
background: linear-gradient(to right, #25c481, #25b7c4);
font-family: 'Rockwell Extra Bold,Rockwell Bold',monospace;
}
section{
margin: 50px;
}