-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
48 lines (42 loc) · 847 Bytes
/
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
body {
background: url("background.png");
background-attachment: fixed;
height: 100%;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
.container {
margin: 40px;
background: rgba(38, 194, 129, 0.2);
border-radius: 10px;
padding: 10px;
}
h1 {
text-align: center;
font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
"Lucida Sans", Arial, sans-serif;
}
.greeting {
font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
"Lucida Sans", Arial, sans-serif;
text-align: center;
}
#special {
font-weight: 700;
}
.interesting {
text-decoration: underline;
}
.boring {
color: grey;
text-transform: lowercase;
}
img {
display: block;
margin-left: auto;
margin-right: auto;
width: 50%;
margin-bottom: 10px;
border-radius: 10px;
}