-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathaccount.module.css
More file actions
111 lines (95 loc) · 1.75 KB
/
account.module.css
File metadata and controls
111 lines (95 loc) · 1.75 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
.changepw_ctn {
width: 100%;
position: relative;
margin-top: 20px;
}
.changepw_ctn form input {
width: 100%;
margin-bottom: 15px;
}
body[data-theme='dark'] .changepw_ctn input {
border-color: #a5a5a5;
background-color: var(--primary-bg-color);
}
.changepw_ctn form button {
width: 100%;
border-radius: 10px;
}
.success_message,
.error_message {
background-color: #c5e7ba;
font-size: 14px;
width: 100%;
padding: 5px 10px;
border-radius: 5px;
text-align: center;
margin-top: 0px;
color: rgb(0, 99, 0);
display: inline-block;
font-weight: 400;
}
.error_message {
color: rgb(172, 0, 0);
background-color: #e7bfba;
}
@media (max-width: 960px) {
.changepw_ctn {
max-width: unset;
}
}
.pro_ctn {
width: 100%;
background-color: #fff;
padding: 20px;
border-radius: 10px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-around;
}
body[data-theme="dark"] .pro_ctn {
background-color: var(--secondary-bg-color);
}
body[data-theme="dark"] .pro_ctn input {
border-color: var(--gray)
}
.upgrade_btn {
margin-top: 2rem;
width: 100%
}
.upgrade_btn a {
width: 100%
}
.upgrade_btn a button {
width: 100%
}
.section_header {
margin: 0 0 10px 0;
font-weight: 600;
}
.threshold_ctn {
width: 100%;
margin-top: 10px;
}
.threshold_row {
display: flex;
gap: 10px;
align-items: center;
}
.threshold_input {
width: 80px;
padding: 5px 10px;
border: 1px solid #ccc;
border-radius: 5px;
font-size: 14px;
}
body[data-theme='dark'] .threshold_input {
border-color: #a5a5a5;
background-color: var(--primary-bg-color);
color: var(--primary-text-color);
}
.threshold_ctn button {
padding: 5px 15px;
border-radius: 5px;
font-size: 14px;
}