-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.css
92 lines (83 loc) · 2.01 KB
/
index.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
input,
select {
cursor: pointer;
height: 45px;
width: 150px;
background-color: rgba(0, 0, 0, 0.70);
padding: 10px;
border: none;
border-radius: 5px;
color: white;
display: inline-block;
font-size: 15px;
text-align: center;
text-decoration: none;
appearance: none;
background-size: 300% 100%;
moz-transition: all .4s ease-in-out;
-o-transition: all .4s ease-in-out;
-webkit-transition: all .4s ease-in-out;
transition: all .4s ease-in-out;
background-image: linear-gradient(to right, #29323c, #485563, #2b5876, #4e4376);
box-shadow: 0 4px 15px 0 rgba(45, 54, 65, 0.75);
}
input:hover {
background-position: 100% 0;
moz-transition: all .4s ease-in-out;
-o-transition: all .4s ease-in-out;
-webkit-transition: all .4s ease-in-out;
transition: all .4s ease-in-out;
}
input:focus {
outline: none;
}
#app{
text-align: center
}
#page {
font-family: "Segoe UI", sans-serif, "Segoe UI", Arial;
text-align: center;
display: inline-block;
height: auto;
width: auto;
margin: auto;
background-color: #ffffff;
}
.border {
border: 1px black solid;
border-radius: 5px;
}
.center {
margin-left: auto;
margin-right: auto;
}
.control{
height: 45px;
width: 45px;
cursor: pointer;
background-color: rgba(0, 0, 0, 0.70);
padding: 10px;
border: none;
border-radius: 5px;
color: white;
display: inline-block;
font-size: 15px;
text-align: center;
text-decoration: none;
appearance: none;
margin-top: 4px;
font-family: 'Noto Sans Symbols 2', sans-serif;
}
.control:hover,
.control:disabled{
background-color: rgba(0, 0, 0, 0.50);
}
.custom-select {
display: inline-block;
}
.nonselect{
-webkit-user-select: none; /* Safari */
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* IE10+/Edge */
user-select: none; /* Standard */
}