-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathstyles.css
110 lines (110 loc) · 2.07 KB
/
styles.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
body{
font-family: 'Tw Cen MT';
background-color: rgb(100, 220, 240);
text-rendering: optimizeLegibility;
}
h1{
font-weight: lighter;
font-size: 50px;
color: black;
text-decoration: none;
}
p{
text-decoration: none !important;
}
.tooperSubject{
margin: 5px;
padding: 5px 20px 5px 20px;
background: rgb(250,200,0);
border-width: 2px;
border-style: outset;
border-color: rgb(250,200,0);
font-size: 20px;
white-space: normal;
display: inline-block;
width: fill;
}
.tooperSubject:hover{
background: rgb(255,220,50);
border-color: rgb(255,220,50);
cursor: pointer;
}
.currentSubject{
margin: 5px;
padding: 5px 20px 5px 20px;
background: rgb(130,250,120);
border-width: 2px;
border-style: outset;
border-color: rgb(130,250,120);
font-size: 20px;
white-space: normal;
display: inline-block;
width: fill;
}
.currentSubject:hover{
background: rgb(170,255,160);
border-color: rgb(170,255,160);
cursor: pointer;
}
.prereqSubject{
margin: 5px;
padding: 5px 20px 5px 20px;
background: rgb(200,125,125);
border-width: 2px;
border-style: outset;
border-color: rgb(200,125,125);
font-size: 20px;
white-space: normal;
display: inline-block;
width: fill;
}
.prereqSubject:hover{
background: rgb(240,150,150);
border-color: rgb(240,150,150);
cursor: pointer;
}
.headRow{
margin: 5px;
padding: 5px 20px 5px 20px;
background: rgb(75,175,200);
border-width: 2px;
border-style: none;
border-color: rgb(75,175,200);
font-size: 20px;
white-space: normal;
display: inline-block;
width: fill;
}
#prenutsInput{
font-size: 40px;
width: 80%;
border: none;
margin: auto 0;
text-align: 'center';
height:100%;
background-color: rgb(150, 240, 255);
color: rgb(20, 50, 60);
}
#prenutsInput:focus{
outline: none;
}
#prenutsInput::placeholder{
color: rgb(40, 100, 120);
font-style: italic;
}
#inputWrapper{
font-size: 40px;
text-align: 'center';
width: 100%;
height: 50px;
}
#prenutsTable{
width: 90%;
}
td span{
width: 70%;
}
td{
text-align: center;
width: 33%;
}