-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
83 lines (77 loc) · 1.78 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<title>
NCVPS PTC AI - Home
</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/style.css"></link>
<style>
.flex-container {
display: flex;
flex-wrap: wrap;
width: 100%;
}
div {
flex-grow: 1;
text-align: center;
}
p {
margin-left: 10px;
}
button:enabled {
padding: 50px;
border: none;
border-radius: 0px;
background-color: silver;
color: black;
transition-duration: 0.4s;
}
button:hover:enabled {
background-color: gray;
cursor: pointer;
}
button:disabled {
padding: 50px;
border: none;
border-radius: 0px;
background-color: #e6e6e6;
transition-duration: 0.4s;
color: gray;
cursor: not-allowed;
}
@media screen and (max-width: 1150px) {
button:enabled {
padding: 50px;
width: 100%;
border: thin solid lightgray;
}
button:disabled {
padding: 50px;
width: 100%;
border: thin solid lightgray;
}
.flex-container {
flex-direction: column;
}
div {
width: 100%;
}
}
</style>
</head>
<body>
<h1 style="text-align:center">NCVPS PTC AI - Home</h1>
<hr/>
<p>Choose below what you need help with.</p>
<div class="flex-container">
<div><button onclick="location.assign('https://ncvpsptc.github.io/ai/tech-support')">Tech Support</button></div>
<div><button disabled>Math</button></div>
<div><button disabled>Science</button></div>
<div><button disabled>English</button></div>
<div><button disabled>Social Studies</button></div>
<div><button disabled>Foreign Language</button></div>
<div><button disabled>CTE</button></div>
</div>
</body>
</html>