-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathudacityCodeReviewerNotes.css
More file actions
75 lines (66 loc) · 1.43 KB
/
udacityCodeReviewerNotes.css
File metadata and controls
75 lines (66 loc) · 1.43 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
body {
font-family: Helvetica;
background-image: url(http://www.chocolatemintsinajar.com/blog/wp-content/uploads/2010/06/IMG_0698.jpg);
background-color: rgba(255, 255, 255, 0.1);
background-repeat: no-repeat;
background-position: top center;
background-attachment: fixed;
background-size: cover;
max-width: 980px; /*This limits the width to 980 px so your lines will not
be so long in wide screens */
margin: 0 auto; /* Memorize this because you will use it a lot. This sets
right and left margins to auto -> it will cented the "body"*/
}
h1 {
text-align: center;
color: #CC7A00;
}
h2 {
margin: 10px;
}
b {
font-weight:bold;
}
.lesson {
background-color: #FF9900;
border-radius: 30px;
color: white;
padding: 10px;
margin: 20px;
position: relative;
}
.concept {
background-color: #FFEBCC;
padding: 4px;
margin: 10px;
border-radius: 4px;
color: black;
}
.concept-title {
font-size: 20px;
margin: 8px;
text-align: center;
color: #E68B00;
}
.concept-description {
font-weight: lighter;
margin: 6px;
}
/*#watermark {
position: fixed;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
opacity:0.2;
}
#watermark img {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
margin: auto;
min-width: 50%;
min-height: 50%;
}*/