-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathtensorstyle.css
More file actions
60 lines (49 loc) · 820 Bytes
/
tensorstyle.css
File metadata and controls
60 lines (49 loc) · 820 Bytes
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
body {
font-family: Arial, sans-serif;
background-color: #f2f2f2;
padding: 20px;
}
h1 {
text-align: center;
}
.card-container {
text-align: center;
margin: 20px auto;
}
.card-container img {
max-width: 20%;
width: 20%;
height: auto;
cursor: pointer;
}
.card-image {
max-width: 100%;
width: 20%;
@media screen and (min-width: 768px) {
.card-container .card {
max-width: 100%;
width: 100%;
}
}
}
.hidden {
display: none;
}
.controls {
text-align: center;
margin-top: 20px;
}
.controls label {
font-weight: bold;
}
.controls select {
margin: 0 10px;
}
.controls button {
padding: 10px 20px;
background-color: #337ab7;
color: #fff;
border: none;
border-radius: 4px;
cursor: pointer;
}