-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
59 lines (53 loc) · 1.06 KB
/
style.css
File metadata and controls
59 lines (53 loc) · 1.06 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
body {
font-family: Arial, sans-serif;
margin: 0;
background-color: #212121;
/* margin: 50px 550px; */
/* display: flex; justify-content: center; */
display: grid;
justify-content: center;
}
h1 {
color: white;
text-align: center;
}
input{
width: 500px;
height: 20px;
padding: 10px;
margin: 20px 15px;
color: black;
border: 2px solid #18cc5d;
outline: none;
font-size: x-large;
font-weight: 500;
border-radius: 5px;
}
button {
padding: 10px 15px;
background-color: #24be48;
color: rgb(255, 255, 255);
font-weight: 600;
border: none;
border-radius: 4px;
cursor: pointer;
margin: 10px 0px;
white-space: nowrap
}
button:hover {
background-color: #009c22;
}
div {
color: white;
font-weight: 500;
font-size: x-large;
display: flex; justify-content: center; justify-content: space-between;
/* margin: 10px 50px; */
align-items: center;
width: 600px;
border: #009c22;
word-break: break-word;
}
#inputandbutton {
display: flex;
}