forked from surajondev/JavaScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
60 lines (51 loc) · 1.02 KB
/
style.css
File metadata and controls
60 lines (51 loc) · 1.02 KB
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
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');
/* base styles */
* {
font-family: "Quicksand";
color: #333;
}
.container {
display: grid;
justify-content: center;
align-content: center;
min-height: 80vh;
grid-template-rows: repeat(1,12vh) 4vh repeat(2,10vh);
grid-gap: 15px;
}
h1 {
text-align: center;
color: #f1356d;
}
.cipheredText {
display: grid;
grid-template-rows: 50% 50%;
}
.container > div {
padding: 10px;
font-size: 20px;
font-weight: bold;
color: black;
border-radius: 10px;
}
input {
text-indent: 8px;
}
button {
background: #ffffff;
color: rgb(0, 0, 0);
border: 0;
padding: 8px;
border-radius: 8px;
cursor: pointer;
border: 1px solid #f1356d;
}
button:hover {
box-shadow: 1px 3px 5px rgba(0,0,0,0.1);
background-color: #f1356d;
color: #fff;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}