-
Notifications
You must be signed in to change notification settings - Fork 0
/
studrec.css
70 lines (68 loc) · 1.08 KB
/
studrec.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
body{
margin: 0;
padding: 0;
background: url(dash.jpg);
background-size: cover;
background-position: center;
font-family: georgia;
}
h1{
margin-bottom: 10px;
padding: 0 0 20px;
text-align:center;
font-size: 50px;
color: black;
font-family: new roman times;
}
.rec input[type="submit"]
{ width: 250px;
border: none;
outline: none;
height: 50px;
background: transparent;
color: black;
font-size:18px;
border-radius: 49px;
font-family: georgia;
}
.rec input[type="submit"]:hover
{cursor: pointer;
background: #db7093;
color:#000;
font-size: 25px;
}
.rec button{
background-color: #fffafa;
border-radius: 10px;
}
.rec a{
text-decoration: none;
font-size: 19px;
color: black;
}
.rec a:hover
{
color: #0000ff;
font-size: 22px;
}
.rec table
{
margin-top: 30px;
opacity: 80%;
}
.rec th,td
{ font-size: 19px;
text-align: center;
}
.rec th
{
background-color:#800080;
color: white;
font-size: 20px;
}
tr:nth-child(even){
background-color: #d8bfd8;
}
tr:nth-child(odd){
background-color: #e6e6fa;
}