-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
100 lines (85 loc) · 1.45 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
* {
box-sizing: border-box;
padding: 0;
margin: 0;
font-family: 'Roboto', sans-serif;
}
body {
background-color: #303030;
/* transition: 1s; */
}
.wrapper {
height: 100vh;
width: 100%;
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
}
h1 {
text-align: center;
margin: 1rem;
color: #fff;
}
.container {
width: 300px;
}
.result {
width: 73.1%;
}
input {
padding: 25px;
color: #fff;
font-size: 1rem;
cursor: pointer;
width: 70px;
background-color: #2b2b2b;
border: none;
outline: none;
border-radius: 4px;
}
.col-1,
.col-2,
.col-3,
.col-4,
.col-5 {
margin-bottom: 5px;
}
footer {
margin-top: 3rem;
text-align: center;
display: flex;
justify-content: center;
}
footer img {
width: 30px;
height: auto;
}
footer a {
text-decoration: none;
}
footer button {
width: 90px;
height: 55px;
padding: 10px;
background-color: #fff;
/* border-radius: 10%; */
border-style: none;
cursor: pointer;
}
footer button span {
font-weight: 500;
padding-left: 3px;
}
footer button:hover {
color: #ff8585;
border-radius: 15%;
width: 135px;
height: 55px;
transition: 1s;
}
footer button {
display: flex;
justify-content: center;
align-items: center;
}