_open_ended_grading.scss 1.28 KB
Newer Older
1
.open-ended-problems,
2 3 4 5
.combined-notifications {
    padding: ($baseline*2);

    .problem-list {
6
        table-layout: auto;
7 8 9 10
        margin-top: ($baseline/2);
        width: 70%;

        td, th {
11 12 13
            padding: 7px;
        }
    }
14 15 16

    .notification-container {
        margin: ($baseline*1.5) 0;
17 18
    }

19 20 21
    .notification {
        @include clearfix();
        margin: ($baseline/2);
22
        width: 30%;
23
        display: inline-block;
24
        vertical-align: top;
25 26

        .notification-link {
27
            display:block;
28
            height: 9em;
29
            padding: ($baseline/2);
30 31
            border: 1px solid black;
            text-align: center;
32 33 34
            
            p {
                font-size: 0.9em;
35 36
                text-align: center;
            }
37
        }
38 39

        .notification-title {
40
            text-transform: uppercase;
41
            background: $blue;
42
            color: white;
43
            padding: ($baseline/4) 0;
44
            font-size: 1.1em;
45
        }
46

47
        .notification-link:hover,
48
        .notification-link:focus {
49 50
            background-color: #eee;
        }
51 52

        .notification-description {
53 54
            padding-top:5%;
        }
55 56 57 58

        .alert-message {
            
            img {
59 60 61
                vertical-align: baseline;
            }
        }
62
    }
63 64

}