forked from COLTEC-DAW/E02-CSS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
110 lines (106 loc) · 1.86 KB
/
style.css
File metadata and controls
110 lines (106 loc) · 1.86 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
body {/*aa*/
font-family: "Helvetica", Sans-Serif;
background-color: #E166E8;
color: black;
width: 80%;
margin: auto;
}
h1{
background-color: black;
color: white;
font-size: 1.8rem;
line-height: 1em;
}
h2{
background-color: black;
color: white;
text-align: left;
font-size: 1.4rem;
line-height: 3em;
}
h3{
font-size: 1.2rem;
}
abbr {
font-variant: small-caps;
}
a{ color: yellow;
font-weight: bold;
}
a:hover{color:grey;}
a:visited{font-weight:lighter}
.explanation ::first-letter{
font-size: 3em;
font-family: "Impact", fantasy;
}
.intro{
color: white;
height: 550px;
font-variant: normal;
text-align: right;
margin-bottom: 20px;
}
.main {
text-align: center;
line-height: 1.5;
}
.explanation{
width: 60%;
margin-right: 35%;
border-right: 1px solid #1f295c;
padding-right: 2%;
}
.sidebar{
background-color: white;
border-color: black;
border-style: solid;
border-width: 2px;
text-align: center;
line-height: 1em;
font-size: 1em;
margin: 4%;
}
.benefits{
border-bottom: 1px solid #000;
padding-bottom: 10px;
h3{
display: flex;
align-self: flex-end;
flex-grow: 3;
}
p{
display: flex;
align-self: flex-start;
flex-wrap: wrap;
flex-grow: 7;
}
}
.participation{
border-top: 1px solid #000;
padding-top: 10px;
margin-top: -1px;
display: flex;
h3{
align-self: flex-start;
flex-grow: 1;
}
p{flex-grow: 1;}
}
li {
list-style-type: none;
line-height: 1.4em;
}
footer{
margin: 4%;
font-size: 0.5em;
border-color: black;
border-style: solid;
border-width: 2px;
display: flex;
justify-content: space-evenly;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}