-
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) · 900 Bytes
/
style.css
File metadata and controls
59 lines (53 loc) · 900 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
html,
body{
margin: 0;
font-family: 'Poppins', sans-serif;
background-color:#d5f5ba;
}
#wrapper div,#wrapper h2{
display:flex;
justify-content: center;
}
h2{
color:#e4ede8;
letter-spacing: 1px;
}
input{
border-radius: 5px;
border: 2px solid rgb(96, 81, 81) ;
margin-top:30px;
height:2em;
width:250px;
padding-left:10px;
}
input:active{
border:none;
}
#wrapper{
height:500px;
width:400px;
margin:200px auto;
background-color:#1c541d;
border-radius:10px;
padding:30px;
}
button{
margin-top:20px;
background-color:#3f3105;
border-radius: 4px;
height: 44px;
font-weight: 600;
padding: 0 30px;
letter-spacing: 1px;
border: none;
background-color: #a5bf30;
color: #fefeff;
}
button:hover{
cursor:pointer;
}
#result{
color:white;
margin-top:20px;
font-size:32px;
}