-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyle.css
106 lines (87 loc) · 1.94 KB
/
style.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
html, body {
height: 100%;
}
body {
margin: 0;
display: flex;
/* This centers our sketch horizontally. */
justify-content: center;
/* This centers our sketch vertically. */
align-items: center;
background: url("./img/background.jpg") center 50%;
}
canvas {
padding: 0;
}
.canvascard { position: relative;
display: flex;
justify-content: center;
align-items: center;
}
.canvascard::before {
display: inline-block;
position: absolute;
top: -2px;
left: -2px;
right: -2px;
bottom: -2px;
z-index: -2;
}
.canvascard::after {
content: '';
display: inline-block;
position: absolute;
top: -2px;
left: -2px;
right: -2px;
bottom: -2px;
z-index: -2;
filter: blur(40px);
}
.canvascard::before ,
.canvascard::after {
background: linear-gradient(235deg,#1438A6,#BF1736,#1438A6);
}
.jumbotron {
background: #0D1440 !important;
text-align: center;
align-items: center;
}
.input-group {
box-sizing:content-box !important;
width:100px !important;
display: inline-flex;
}
.input-group .lbl {
display: block!important;
width: 100% !important;
}
.input-group #inputGroupSelect02 {
display: block !important;
width: 100% !important;
}
body { overscroll-behavior: none }
@media (max-width: 768px)and (orientation: Portrait) {
html {font-size: calc(0.65em + 0.3vw) }
.display-4{
font-size: 20px;
}
.controls {
width: calc(15em + 12vw) ;
}
}
@media (max-width: 1024px)and (orientation: Landscape) {
html {font-size: calc(0.4em + 0.3vw) }
.controls {
width: calc(10em + 10vw) ;
}
.display-4{
font-size: 35px;
}
.wlcm{
margin-top: 75px;
}
.input-group {
width:90px !important;
}
}