-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
116 lines (103 loc) · 2.03 KB
/
style.css
File metadata and controls
116 lines (103 loc) · 2.03 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
body {
margin: 0;
text-align: center;
}
.box {
margin: 0 auto;
padding: 20px;
width: 700px;
background-color: rgb(117, 181, 249);
border-style: solid;
border-width: 1px;
border-color: rgb(122, 121, 121);
border-radius: 10px;
box-shadow: 0 0 3px 3px rgb(168, 187, 203);
}
#formContainer {
height: 30px;
display: flex;
justify-content: center;
align-items: center;
gap: 10px;
}
#input {
width: 500px;
height: 100%;
border-style: solid;
border-width: 1px;
border-color: rgb(122, 121, 121);
border-radius: 20px;
padding-left: 10px;
font-size: 17px;
}
#input:focus {
outline: none;
border-color: rgb(4, 80, 187);
}
#btn {
width: 100px;
height: 115%;
background-color: rgb(25, 114, 210);
color: white;
border-style: solid;
border-width: 1px;
border-color: rgb(122, 121, 121);
border-radius: 20px;
font-size: 17px;
}
#btn:hover {
cursor: pointer;
background-color: rgb(37, 129, 228);
}
#resultContainer {
position: relative;
width: 100%;
height: 250px;
background: none
}
#display {
cursor: pointer;
position: absolute;
left: 37px;
top: 0;
width: 250px;
height: 250px;
border: none;
background-color: white;
}
#downloadBTN {
position: absolute;
right: 37px;
top: 10px;
width: 300px;
height: 40px;
background-color: rgb(19, 255, 2);
color: rgb(51, 50, 50);
border-style: solid;
border-width: 1px;
border-color: rgb(122, 121, 121);
border-radius: 5px;
font-size: 17px;
}
#downloadBTN:hover {
cursor: pointer;
background-color: rgb(58, 245, 44);
}
#copyBTN {
position: absolute;
right: 37px;
top: 70px;
width: 300px;
height: 40px;
background-color: yellow;
color: rgb(51, 50, 50);
border-style: solid;
border-width: 1px;
border-color: rgb(122, 121, 121);
border-radius: 5px;
font-size: 17px;
}
#copyBTN:hover {
cursor: pointer;
background-color: rgb(247, 247, 42);
}