-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
74 lines (73 loc) · 1.29 KB
/
style.css
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
/* general stuff */
body {
background-image: url(https://picsum.photos/1000/600);
background-size: cover;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
font-size: 16px;
font-weight: lighter;
}
h1 {
color: rgb(40, 40, 60);
font-size: 32px;
font-weight: bold;
}
h2 {
font-size: 25px;
font-style: italic;
font-weight: normal;
}
a {
color: purple;
text-decoration: none;
}
a:hover {
color: blueviolet;
}
/* container stuff */
.container {
width: 700px;
margin: auto;
}
/* responsivity stuff*/
@media (max-width: 960px) {
/* For a screen < 960px, this CSS will be read */
.container {
width: 700px;
}
}
@media (max-width: 720px) {
/* For a screen < 720px, this CSS will be read */
.container {
width: 500px;
}
}
@media (max-width: 540px) {
/* For a screen < 540px, this CSS will be read */
.container {
width: 300px;
}
}
.opaque {
opacity: 1;
}
strong {
font-weight: bold;
}
.card-beige {
background-color: rgb(245, 245, 220);
border-radius: 4px;
box-shadow: 2px 2px rgb(235, 235, 210);
margin-bottom: 20px;
padding: 10px;
opacity: 0.9;
}
.center-text {
text-align: center;
}
.list-inline > li {
display: inline-block;
padding: 0px 20px;
}
.img-circle {
border-radius: 100%;
}