-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
96 lines (81 loc) · 1.63 KB
/
styles.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
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
body {
font-family: Arial, sans-serif;
text-align: center;
width: 400px;
background: linear-gradient(to right, #9b2c9b, #ec4899, #fb923c);
border-radius: 0.5rem;
padding: 1rem;
box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3), 0 4px 6px rgba(0, 0, 0, 0.1);
margin-left: auto;
margin-right: auto;
}
#prompt {
padding: 8px;
margin-bottom: 10px;
border-radius: 50px;
background: rgb(0, 0, 0);
color: gray;
font-weight: 700;
}
#prompttext {
padding: 8px;
margin-bottom: 10px;
border-radius: 50px;
background: rgb(0, 0, 0);
color: gray;
font-weight: 700;
}
#generate {
background-color: rgb(254, 254, 255);
color: rgb(17, 14, 14);
font-weight: 800;
padding: 10px 10px;
cursor: pointer;
border-radius: 20px;
}
#generatetext {
background-color: rgb(254, 254, 255);
color: rgb(17, 14, 14);
font-weight: 800;
padding: 10px 10px;
cursor: pointer;
border-radius: 20px;
}
#imageContainer img {
max-width: 100%;
margin-top: 10px;
}
img {
width: 350px;
height: 300px;
border-radius: 5px;
clip-path: inset(0 0 20px 0);
}
.topbar {
display: flex;
justify-content: space-between;
background-color: white;
border-top-left-radius: 8px;
border-top-right-radius: 8px;
overflow: hidden;
}
.tab {
flex: 1;
padding: 15px;
text-align: center;
cursor: pointer;
color: black;
font-weight: bold;
background-color: #f5f5f5;
}
.tab.active {
background-color: #d3d3d3;
color: black;
}
a {
text-decoration: none;
}
/* iframe {
resize: both;
overflow: auto;
} */