-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
68 lines (58 loc) · 1.1 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
body {
font-family: "Lato", sans-serif;
background: #2696ec;
background: -webkit-linear-gradient(top left, #2696ec, #0aa763);
background: -moz-linear-gradient(top left, #2696ec, #0aa763);
background: linear-gradient(to bottom right, #2696ec, #0aa763);
}
html {
overflow: scroll;
overflow-x: hidden;
}
::-webkit-scrollbar {
width: 0; /* Remove scrollbar space */
background: transparent; /* Optional: just make scrollbar invisible */
}
/* Optional: show position indicator in red */
::-webkit-scrollbar-thumb {
background: #ff0000;
}
.mycnt {
box-shadow: 20px 20px 50px #00d2c6, -30px -30px 60px #00ffff;
border-radius: 13px;
}
label {
color: #333;
}
.help-block.with-errors {
color: #ff5050;
margin-top: 5px;
}
.card {
margin-left: 10px;
margin-right: 10px;
}
.runbtn i {
position: absolute;
font-size: 30px;
color: #ffffff;
top: 5px;
right: 10px;
}
.runbtn {
width: 100%;
margin-bottom: 10px;
}
.icon {
padding: 10px;
min-width: 40px;
}
.btn-send {
width: 100%;
padding: 10px;
text-align: center;
}
.myftr {
background-color: #064d57;
color: #ffffff;
}