-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
99 lines (89 loc) · 1.84 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
/* General Styles */
body {
font-family: 'Arial', sans-serif;
background-color: #2F0A28;
margin: 0;
padding: 20px;
display: flex;
flex-direction: column;
align-items: center;
color: #000000;
}
h1 {
font-size: 2.5rem;
color: #CADBC0;
margin-bottom: 20px;
text-align: center;
}
label {
font-size: 1.2rem;
font-weight: bold;
margin-top: 15px;
}
:disabled {
color: #888888;
}
/* Neumorphism Styles */
.container {
display: flex;
width: 100%;
max-width: 1500px;
justify-content: space-evenly;
}
.column {
background-color: #CADBC0;
border-radius: 10px;
box-shadow: 12px 12px 2px 1px #f5cac354;
padding: 30px;
width: 32%;
margin-right: 2%;
margin-top: 20px;
/*display: flex;*/
flex-direction: column;
align-items: center;
flex: 0 0 32%;
}
select, input {
font-size: 1.2rem;
padding: 15px;
margin-top: 10px;
border-radius: 10px;
border: none;
box-shadow: inset 4px 4px 8px #f7ede2, inset -4px -4px 8px #f5cac3;
background-color: #e0e5ec;
outline: none;
width: 100%;
}
.hidden {
display: none;
}
#add-idea-button,
#get-suggestions-button {
font-size: 1.2rem;
margin-top: 20px;
padding: 15px;
border-radius: 10px;
border: none;
background-color: #84a59d;
color: white;
cursor: pointer;
box-shadow: 6px 6px 2px 1px #f5cac354;
transition: all 0.3s ease;
}
#add-idea-button:hover,
#get-suggestions-button:hover,
.delete-button-idea-card:hover {
box-shadow: inset 4px 4px 8px #f7ede2, inset -4px -4px 8px #f5cac3;
}
.delete-button-idea-card,
.delete-button-resource-card {
font-size: 0.8rem;
margin-top: 10px;
padding: 10px;
border-radius: 10px;
border: none;
background-color: #f28482;
color: white;
cursor: pointer;
transition: all 0.3s ease;
}