-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
81 lines (67 loc) · 1.36 KB
/
style.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
/* style.css */
#controls {
margin-top: 10px;
}
#edited-image {
max-width: 100%;
max-height: 100%;
}
/* Example background and color styles */
body {
background-color: #f4f4f4;
}
.btn-primary {
background-color: #007bff;
color: #fff;
}
/* Add your custom background and color styles as needed */
/* Example margin and padding styles */
#image-container {
margin: 10px;
}
.btn {
margin-right: 5px;
}
/* Add margins and padding as per your layout and spacing preferences */
/* Example border and box shadow styles */
#edited-image {
border: 1px solid #ddd;
box-shadow: 3px 3px 5px #888;
}
/* Customize borders and shadows as desired */
/* Example font and typography styles */
h1 {
font-family: 'Arial', sans-serif;
font-size: 24px;
}
input[type="text"] {
font-size: 14px;
}
/* Define your preferred fonts and typography styles */
/* Example button hover effect */
.btn {
transition: background-color 0.3s;
}
.btn:hover {
background-color: #0056b3;
}
/* Example container styles */
.container {
background-color: #fff;
padding: 20px;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
/* Style the selected theme */
.theme-light {
background-color: #f5f5f5;
}
.theme-dark {
background-color: #333;
color: #fff;
}
footer{
height: 30vh !important;
color: #000;
weight: 100%
}