PluginProbe
FluentBoards – Project Management, Task Management, Goal Tracking, Kanban Board, and, Team Collaboration / 1.21
FluentBoards – Project Management, Task Management, Goal Tracking, Kanban Board, and, Team Collaboration v1.21
2.0.15 2.0.12 2.0.10 2.0.4 2.0.1 2.0.0 1.95.3 1.95.2 1.95 1.91.6 trunk 1.11 1.12 1.13 1.20 1.21 1.22 1.23 1.30 1.31 1.32 1.35 1.40 1.41 1.45 All 41 releases
fluent-boards / app / Views / emails / common-style.php

common-style.php in FluentBoards – Project Management, Task Management, Goal Tracking, Kanban Board, and, Team Collaboration 1.21, at app/Views/emails/common-style.php

174 lines 3.8 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <style>
2 * {
3 box-sizing: border-box;
4 margin: 0;
5 padding: 0;
6 background: #F6F8FB;
7 }
8 .fbs_email_notification{
9 padding: 40px 0px 0px 0px;
10 align-items: center;
11 gap: 10px;
12 align-self: stretch;
13 }
14 .fbs_email_notification_top{
15 align-items: center;
16 margin-bottom: 30px;
17 }
18 .fbs_email_notification_head{
19 text-align: center;
20 margin-bottom: 30px;
21 }
22 .fbs_head_text{
23 color: #170F49;
24 font-size: 20px;
25 font-style: normal;
26 font-weight: 700;
27 line-height: 1.2;
28 }
29 .fbs_email_notification_contents{
30 padding: 30px;
31 border-radius: 8px;
32 background: #FFF;
33 width: 60%;
34 margin: auto;
35 }
36 .fbs_email_content{
37 display: flex;
38 background: #FFF;
39 }
40 .fbs_email_content_left{
41 background: #FFF;
42 }
43 .fbs-avatar{
44 width: 45px;
45 height: 45px;
46 border-radius: 50px;
47 }
48 .fbs_email_content_right{
49 background: #FFF;
50 width: 100%;
51 margin-left: 10px;
52 }
53 .fbs_user_name{
54 color: #1A1D1F;
55 font-size: 15px;
56 font-style: normal;
57 font-weight: 600;
58 line-height: 22px;
59 background: #FFF;
60 }
61 .fbs_email_details{
62 color: #565865;
63 font-size: 14px;
64 font-style: normal;
65 font-weight: 400;
66 line-height: 20px;
67 background: #FFF;
68 }
69 .fbs_invite_error{
70 margin-top: 10px;
71 }
72 .fbs_email_comment{
73 color: #2F3448;
74 font-size: 15px;
75 font-style: normal;
76 font-weight: 500;
77 line-height: 24px;
78 margin-top: 10px;
79 padding: 3px 10px;
80 }
81 .fbs_email_notification_bottom{
82 text-align: center;
83 margin-top: 30px;
84 }
85 .fbs_bottom_text_small{
86 color: #2F3448;
87 font-size: 14px;
88 font-style: normal;
89 font-weight: 400;
90 line-height: 20px;
91 }
92 .fbs_bottom_text{
93 color: #2F3448;
94 text-align: center;
95 font-size: 20px;
96 font-style: normal;
97 font-weight: 600;
98 line-height: 28px; /* 140% */
99 }
100 .fbs_email_notification_footer{
101 display: flex;
102 height: 100%;
103 padding: 30px 0;
104 align-items: flex-start;
105 gap: 8px;
106 align-self: stretch;
107 background: #FFF;
108 }
109 .fbs_email_footer_text{
110 color: #2F3448;
111 font-size: 16px;
112 font-style: normal;
113 font-weight: 500;
114 line-height: 22px;
115 margin: auto;
116 }
117 .fbs_invitation_button{
118 background: #6268F1FF;
119 color: #FFF;
120 font-size: 16px;
121 font-weight: 600;
122 line-height: 22px;
123 padding: 10px 20px;
124 border-radius: 8px;
125 text-align: center;
126 text-decoration: none;
127 margin-top: 10px;
128 width: 30%;
129 }
130
131 .fbs_daily_reminder {
132 margin: 0 auto;
133 display:block;
134 background: #FFF;
135 border-radius: 8px;
136 }
137 .fbs_email_greeting {
138 background-color: #ffffff;
139 margin-bottom: 20px;
140 font-size: 15px;
141 }
142 .fbs_email_task_list_group {
143 background-color: #ffffff;
144 margin-bottom: 20px;
145 width: 100%;
146 margin-top: 10px;
147 gap: 10px;
148 }
149 .fbs_email_task_list_item {
150 color: #2F3448;
151 margin-bottom: 5px;
152 border-radius: 8px;
153 padding: 10px;
154 text-decoration: none;
155 list-style: none;
156 }
157 .fbs_bg_white {
158 background-color: #ffffff !important;
159 }
160
161 @media (max-width: 600px) {
162 .fbs_email_content {
163 display: block;
164 }
165 .fbs_email_content_right {
166 margin-left: 0;
167 margin-top: 10px;
168 }
169 .fbs_email_notification_contents {
170 width: 90%;
171 }
172 }
173
174 </style>