-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
57 lines (51 loc) · 893 Bytes
/
index.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
*{
font-family: 'Courier New', Courier, monospace;
}
#container{
width:600px;
height:700px;
max-height: max-content;
margin:auto;
border:auto solid black;
text-align: center;
border-radius: 20px;
}
input{
width:450px;
height:40px;
border-radius: 10px;
border:1px solid black;
font-family: 'Courier New', Courier, monospace;
font-size: large;
text-align: center;
}
img{
margin-top:30px;
border: 3px solid black;
}
button{
margin:60px 0px 0 0;
width:200px;
height:50px;
border-radius: 10px;
letter-spacing: 2px;
}
.generate{
color:white;
background-color: rgba(10, 177, 10, 0.712);
border:2px solid green
}
.downlode{
margin-left: 100px;
color:white;
background-color: rgb(16, 16, 121);
border:2px solid rgb(70, 22, 202);
}
input:focus{
border-color:seagreen;
background-color: aliceblue;
color:black
}
p{
margin-top:70px;
}