-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
59 lines (52 loc) · 1.09 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
body {
background-image: linear-gradient(to right, rgb(33, 134, 197), rgb(12, 171, 110));
font-family: 'Poppins', sans-serif;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
}
.container {
background-color: rgb(255, 255, 255, 50%);
box-shadow: 10px 10px 10px rgb(77, 73, 73, 50%);
width: 400px;
padding: 20px;
border-radius: 10px;
}
.judul {
font-size: 30px;
text-align: center;
margin-bottom: 10px;
}
.input {
background-color: white;
font-family: 'Poppins', sans-serif;
border: none;
outline: none;
padding: 5px;
margin-bottom: 10px;
width: calc(100% - 10px);
}
.tmbl {
background-color: rgb(20, 144, 197);
color: aliceblue;
font-family: 'Poppins', sans-serif;
border: none;
outline: none;
padding: 5px;
margin-bottom: 10px;
cursor: pointer;
width: calc(100%);
}
.tmbl:hover {
background-color: rgb(11, 58, 118);
}
.tmbl:focus {
outline: none;
}
.hasil {
max-height: 100px;
overflow-y: auto;
margin-top: 10px;
text-align: center;
}