-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathstil.css
More file actions
57 lines (50 loc) · 984 Bytes
/
stil.css
File metadata and controls
57 lines (50 loc) · 984 Bytes
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
body {
background-image: linear-gradient(#d2e6ef,#f2f2f2);
margin: 0;
padding: 0;
font-family: Roboto, sans-serif;
}
.container {
width: 1000px;
background-color: #ffffff;
margin: auto;
border-left: 2px solid #c11111;
border-right: 2px solid #c11111;
}
header {
padding: 70px 0;
text-align: center;
font-family: 'Indie Flower', serif;
font-size: 80px;
font-weight: 700;
letter-spacing: 3px;
text-transform: capitalize;
color: #c11111;
text-shadow: 7px 2px #5b0606;
}
footer {
padding: 20px 10px;
text-align: center;
border-top: 2px solid #c11111;
font-size: 11px;
margin-top: 10px;
}
dl {
margin: auto;
}
dl > div {
width: 50%;
/*border: 1px solid #c11111;*/
box-shadow: 5px 10px #f2f2f2;
border-radius: 10px;
padding: 20px;
margin: 0 auto 25px auto;
}
dd {
margin-top: 2px;
font-style: italic;
font-size:13px;
}
dd::before {
content: '- '
}