-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathimage_styles.css
More file actions
115 lines (101 loc) · 1.97 KB
/
image_styles.css
File metadata and controls
115 lines (101 loc) · 1.97 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;
}
.bar{
position: fixed;
z-index: 1;
width:100%;
height: 4rem;
background-color: #2b537e;
display: flex;
flex-direction: row;
justify-content: space-between;
top:0;
}
.logo, .logout{
margin:0.9rem 7rem;
}
.logo{
font-family: "Chiron Sung HK";
color: #efefef;
font-weight: 700;
font-size:1.5rem;
}
.logout{
padding:8px 10px;
border-radius: 10px;
font-size: 1.1rem;
background-color: #efefef;
color:#2b537e;
border-color: #efefef;
border-style: none;
}
.logout:hover{
box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.247);
box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.363);
transition: box-shadow 0.3s ease;
}
body{
background-color: #d5ecf0;
display: flex;
justify-content: center;
align-items: center;
padding-top: 10rem;
}
.box{
background-color:#f5feff ;
width: 800px;
border-radius: 15px;
padding:2rem;
display: flex;
flex-direction: column;
justify-content: center;
gap:2rem;
align-items: center;
}
.uploadForm {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 1.5rem;
width: 100%;
}
.upload-box {
border: 2px dashed #0b244a;
border-radius: 20px;
padding: 3rem 2rem;
cursor: pointer;
transition: all 0.3s ease;
background: #f4fafa;
text-align: center;
justify-self: center;
width: 100%;
height: 200px;
}
.upload-box:hover {
background: #d5ecf0;
border-color: #2b537e;
}
.upload-label p {
font-weight: 600;
color: #0b244a;
font-size: 1.1rem;
}
.analyze-btn {
margin-top: 1.5rem;
background-color: #2b537e;
color: #efefef;
padding: 15px 30px;
border-radius: 25px;
font-size: 1.1rem;
border: none;
cursor: pointer;
transition: all 0.3s ease;
}
.analyze-btn:hover {
background-color: #1e3a59;
box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}