-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
115 lines (104 loc) · 2.12 KB
/
style.css
File metadata and controls
115 lines (104 loc) · 2.12 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background: url(https://static.vecteezy.com/system/resources/previews/027/231/654/non_2x/illustration-graphic-of-aesthetic-background-template-with-simple-and-minimalist-pastel-colors-vector.jpg);
background-size: cover;
}
#container {
position: relative;
text-align: center;
padding: 20px;
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.401);
width: 350px;
font-family: "Lobster", serif;
background-color: rgba(193, 156, 130, 0.393);
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
input[type="text"] {
width: 250px;
padding: 10px;
margin-bottom: 10px;
border: 1px solid #cccccc52;
border-radius: 5px;
}
label{
color: #68512a;
font-size: 18px;
}
select{
padding: 5px;
width: 100px;
}
button {
padding: 15px 25px;
background-color: #8e7654;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
font-family: "Lobster", serif;
margin-top: 20px;
font-size: 20px;
}
button:hover {
background-color: #b09063;
}
#output {
margin-bottom: 20px;
font-size: 25px;
color:red;
background-color: rgba(255, 255, 255, 0.457);
border: 2px solid white;
border-radius: 50% 50% 0 0;
padding: 15px;
min-height: 200px;
word-wrap: break-word;
white-space: pre-wrap;
display: flex;
justify-content: center;
align-items: center;
width: 100%;
}
.hidden {
display: none;
}
.colorPicker{
width: 50px;
height: 38px;
margin-left: 3px;
background-color: transparent;
border: none;
border-radius: 100%;
}
.inp-2{
display: flex;
justify-content: center;
align-items: center;
width: 400px;
flex-direction: column;
margin-bottom: 20px;
}
.gitHub{
position: absolute;
left: 0;
top: 0;
}
.gitHub a {
color:#8e7654;
}
.gitHub a i {
font-size: 50px;
}