-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
101 lines (87 loc) · 1.78 KB
/
style.css
File metadata and controls
101 lines (87 loc) · 1.78 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
97
98
99
100
101
* {box-sizing: border-box}
/* Style the heading */
h1 {
font-family: Arial, Helvetica, sans-serif;
}
/* Set height of body and the document to 100% */
html, body {
height: 95%;
}
/* Set the style of the grid that holds video grids */
.grid-container {
display: grid;
grid-template-columns: auto auto;
border: 1px solid black;
height: 95%;
}
/* Style the grids that hold videos */
.grid-item {
border: 1px solid black;
text-align: center;
}
/* Style the videos in Monitor tab */
.vid {
width: 350px;
height: 220px;
position: relative;
top: 50%;
transform: translateY(-50%);
}
/* Style tab links */
.tablink {
background-color: #555;
color: white;
float: left;
border: none;
outline: none;
cursor: pointer;
padding: 14px 16px;
font-size: 17px;
width: 25%;
}
.tablink:hover {
background-color: #777;
}
/* Style the tab content (and add height:100% for full page content) */
.tabcontent {
color: white;
display: none;
padding: 100px 20px;
height: 100%;
}
#Home {background-color: purple;}
#Monitor {background-color: green;}
#Dashboard {background-color: blue;}
#About {background-color: royalblue;}
#Technology {background-color:saddlebrown;}
img {
float: center;
width: 200px;
height: 268px;
}
.column {
float: left;
width: 50%;
padding: 10px;
}
.row:after {
content: "";
display: table;
clear: both;
}
.vl {
border-left: 6px solid black;
height: 500px;
}
a {
background-color: #3D54E5;
color: white;
padding: 14px 25px;
text-align: center;
text-decoration: none;
display: inline-block;
width: 24.5%;
}
.home-table {
border: 1px solid black;
}