Skip to content

Commit

Permalink
add card component with table
Browse files Browse the repository at this point in the history
  • Loading branch information
subhangi2731 committed Feb 3, 2022
1 parent a0101fe commit 26bfdf7
Show file tree
Hide file tree
Showing 5 changed files with 526 additions and 8 deletions.
1 change: 1 addition & 0 deletions src/mote/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
from threading import Event, Lock

import click
import flask
import yaml
from fedora_messaging import api
from flask import Flask, abort, jsonify, render_template, request
Expand Down
54 changes: 54 additions & 0 deletions src/mote/static/css3/teams.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
#bigcard {
border: solid transparent;
}
.card li {
color: rgba(60, 110, 180, 1);
font-family: 'Montserrat';
font-weight: bold;

}

.card header {
font-family: 'Montserrat';
font-weight: bold;
}

.card label {
margin-right: auto;
color: rgba(81, 162, 218, 1);
font-family: 'Montserrat';
}

article {
color: rgba(81, 162, 218, 1);
font-family: 'Montserrat';
font-style: 'normal';
font-size: 22px;
font-weight: bold;
}

.table {
margin-bottom: 0px;
}

text {
color: rgba(81, 162, 218, 1);
font-family: 'Open Sans';
font-size: 12px;
}

.item {
color: rgba(60, 110, 180, 1);
font-family: 'Open Sans';
font-style: 'normal';
font-size: 18px;
font-weight: bold;
letter-spacing: 0px;
text-decoration: none;
text-transform: none;

}

.form-check-input {
margin-left: 620px;
}
Loading

0 comments on commit 26bfdf7

Please sign in to comment.