Project

General

Profile

Publicity #2748 » OverlayParts-mkg-edit.txt

Matt Gold, 2013-09-11 07:30 AM

 
1
//js to go in document.ready, I couldn't get all the text to show without that min height, not sure if max height is actually needed.
2
$("#overlay-content").modal({overlayClose:true, minHeight:550, maxHeight:1050,opacity:80});
3

    
4

    
5

    
6

    
7
<!-- HTML for window -->
8
    <div id="overlay-content">
9
        <h2>Your Profile Page Has Changed!</h2>
10
        <p>Your profile has received some major functional and design changes with the goal of giving you a better looking, more personalized profile that can serve as a central place for your professional links and information. Here are some highlights of the changes:</p>
11
        <ul>
12
            <li>Redesigned to be more polished.</li>
13
            <li>You can add a quick one-line bio under your name and a longer description of yourself underneath.</li>
14
            <li>New profile widgets allow you to create a custom CV with a wide range of information, from Education to RSS feeds to free-text areas.</li>
15
            <li>You can easily add, edit, and drag to reorder and delete profile widgets.</li>
16
            <li>A new Positions widget allows you to add multiple positions and titles to your profile. </li>
17
            
18
        </ul>
19
        <p>Close this message and click the <strong>Edit</strong> button to get started. Please visit our <a href="sss">tutorials</a> for more information about these changes.</p>
20
        <p>Comments are always welcome. Email us at <a href="mailto:commons@gc.cuny.edu">commons@gc.cuny.edu</a> or use the orange <b>Give Us Feedback</b> button on the right to let us know what you think.</p>
21
        <div class="clear"></div>
22
    </div>
23

    
24

    
25

    
26

    
27
 /* CSS Styling  */
28
    #simplemodal-overlay {
29
        background-color:#000;
30
    }
31

    
32
    .simplemodal-wrap{
33
        /*height:80px;*/
34
    }
35
    #simplemodal-container {
36
        background-color:#333; 
37
        border:3px solid #444; 
38
        /*padding:12px;*/
39

    
40
        -moz-border-radius: 10px;
41
        -webkit-border-radius: 10px;
42
        border-radius: 10px;
43

    
44
        width:60%;
45
        /*height:70%;*/
46
        margin: 0 auto;
47

    
48
        -moz-box-sizing: border-box;
49
        -webkit-box-sizing: border-box;
50
        box-sizing: border-box;
51
    }
52

    
53

    
54

    
55
    #simplemodal-container a.modalCloseImg {
56
        background:url(images/x.png) no-repeat; /* adjust url as required */
57
        width:25px;
58
        height:29px;
59
        display:inline;
60
        z-index:4000;
61
        position:absolute;
62
        top:-5px;
63
        right:-10px;
64
        cursor:pointer;
65
    }
66

    
67
    .simplemodal-data{
68
        font-size: 1.1em;
69
        color:#fff;
70
        height:100%;
71
    }
72

    
73
    
74

    
75
    .simplemodal-data h2{
76
        background-color:#3FC2F3;
77
        color: #fff;
78
        padding:1em;
79
        margin:0 0 1em 0;
80
        font-family: sans-serif;
81
        font-size:2em;
82
        font-weight: 400;
83
        border-top-left-radius: 10px;
84
        border-top-right-radius: 10px;
85
        border-bottom: 1px solid #fff;
86

    
87
    }
88

    
89
    .simplemodal-data p{
90
        padding:0 2em;
91
    }
92
    .simplemodal-data ul{
93
        margin-left: 2em;
94
    }
95

    
96
    .simplemodal-data li{
97
        margin-left: 2em;
98
    }
99

    
100
    .simplemodal-data ul li{
101
        margin-left: 2em;
102
        list-style-type: disc;
103
        margin-bottom:1em;
104
    }
105

    
106
    .simplemodal-data strong{
107
        font-weight: 900;
108
        color: #70C176;
109
    }
110

    
111
    .simplemodal-data b{
112
        font-weight: 900;
113
        color: #F58D59;
114
    }   
(4-4/6)