-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
79 lines (73 loc) · 1.54 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
* {
--purple-color: rgb(39, 0, 181);
}
body {
margin-top: 200px;
text-align: center;
background-color: #131516;
}
.image-preview {
width: 400px;
height: 400px;
min-height: 100px;
border: 3px solid var(--purple-color);
margin-top: 15px;
display: flex;
justify-content: center;
overflow: hidden;
margin: 0 auto;
border-radius: 10px;
}
.image-preview-image {
width: 100%;
display: none;
object-fit: fill;
}
.image-preview-default-text {
margin-top: 130px;
display: solid;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.image-upload-button {
font-size: 1.17em;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
width: 80%;
height: 40px;
border-radius: 5px;
border-style: none;
font-weight: bold;
}
.model-output {
margin-bottom: 10px;
}
#button-and-input-container {
display: flex;
flex-direction: column;
margin: 0 auto;
margin-top: 10px;
justify-content: space-around;
align-items: center;
width: 400px;
min-height: 150px;
background-color: var(--purple-color);
border-radius: 5px;
}
#nav-bar {
position: fixed;
top: 0;
left: 0;
background-color: var(--purple-color);
width: 120em;
display: flex;
}
#web-title {
padding-left: .3em;
color: white;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
#input-label {
color: white;
font-weight: bold;
font-size: 1.2em;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}