-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
45 lines (40 loc) · 697 Bytes
/
style.css
File metadata and controls
45 lines (40 loc) · 697 Bytes
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
font-family: Arial, Helvetica, sans-serif;
}
.container {
padding: 10px;
min-width: 300px;
}
.container h1 {
text-align: center;
margin-bottom: 10px;
border-bottom: 1px solid #ccc;
}
.input-group {
width: 100%;
border: 1px solid #efefef;
display: flex;
}
input {
padding: 6px;
border: 1px solid #ccc;
font-size: 1rem;
width: 100%;
}
button {
padding: 6px;
border: 1px solid #ccc;
background-color: #fff;
font-size: 1rem;
cursor: pointer;
}