This repository has been archived by the owner on Mar 31, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
123 lines (113 loc) · 2.64 KB
/
styles.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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
body {
background-color: #1E1B28;
font-family: 'Fredoka', sans-serif;
margin-left: 25%;
margin-right: 25%;
margin-top: 0%;
margin-bottom: 5%;
padding: 0;
box-sizing: border-box;
font-weight: normal;
transition: 0.5s ease-in-out;
}
.settings {
background-color: #1E1B28;
font-family: 'Fredoka', sans-serif;
border: 3px solid #BC87B2;
border-radius: 10px;
color: #CC9BC2;
padding: 6px;
transition: 0.5s ease-in-out;
}
.button {
background-color: #CC9BC2;
font-family: 'Fredoka', sans-serif;
border: none;
color: #1E1B28;
padding-left: 6px;
padding-right: 6px;
padding-top: 6px;
padding-bottom: 6px;
border: 3px solid #CC9BC2;
border-radius: 10px;
font-weight: bold;
transition: 0.5s ease-in-out;
}
.button:hover {
background-color: #1E1B28;
color: #CC9BC2;
padding-left: 10px;
padding-right: 10px;
transition: 0.5s ease-in-out;
}
.button:active {
background-color: #CC9BC2;
color: #1E1B28;
transition: 0.5s ease-in-out;
}
::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
color: #BC87B2;
opacity: 1; /* Firefox */
transition: 0.5s ease-in-out;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
color: #BC87B2;
transition: 0.5s ease-in-out;
}
::-ms-input-placeholder { /* Microsoft Edge */
color: #BC87B2;
transition: 0.5s ease-in-out;
}
.title {
display: block;
width: 100%;
border: none;
outline: none;
font-size: 20px;
font-weight: normal;
color: #CC9BC2;
background-color: #1E1B28;
padding-top: 0.1%;
padding-bottom: 0.1%;
font-family: 'Fredoka', sans-serif;
transition: 0.5s ease-in-out;
}
.text, .input {
display: block;
width: 100%;
border: none;
outline: none;
font-size: 20px;
font-weight: normal;
color: #CC9BC2;
background-color: #1E1B28;
padding-top: 2%;
padding-bottom: 2%;
font-family: 'Fredoka', sans-serif;
transition: 0.5s ease-in-out;
}
.hr {
border-color: #CC9BC2;
transition: 0.5s ease-in-out;
}
span {
font-family: 'Courier Prime', monospace;
background-color: #15121E;
border: 10px solid #15121E;
border-radius: 10px;
display: block;
transition: 0.5s ease-in-out;
}
@keyframes fly {
0% { transform: translate(0px,0px) rotate(0deg); }
25% { transform: translate(0px,1px) rotate(0deg); }
50% { transform: translate(0px,-1px) rotate(0deg); }
75% { transform: translate(0px 0px) rotate(0deg); }
100% { transform: translate(0px,0px) rotate(0deg); }
}
@media only screen and (max-width: 768px) {
body {
margin-left: 5%;
margin-right: 5%;
}
}