-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
128 lines (109 loc) · 1.9 KB
/
style.css
File metadata and controls
128 lines (109 loc) · 1.9 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
@font-face {
font-family: 'karnivoreregular';
src: url('font/KARNIVOR-webfont.eot');
src: url('font/KARNIVOR-webfont.eot?#iefix') format('embedded-opentype'),
url('font/KARNIVOR-webfont.woff2') format('woff2'),
url('font/KARNIVOR-webfont.woff') format('woff'),
url('font/KARNIVOR-webfont.ttf') format('truetype'),
url('font/KARNIVOR-webfont.svg#karnivoreregular') format('svg');
font-weight: normal;
font-style: normal;
}
body
{
background: url("image/back.png") top repeat-x;
margin: 0;
}
#bloc_body
{
display: flex;
}
#bloc_lisere
{
background: linear-gradient(to bottom, rgba(255,0,0,0), rgba(255,255,255,1)), url("image/lisere.png");
min-width: 60px;
width: 10%;
}
#bloc_page
{
min-width: 540px;
width: 90%;
padding: 15px;
display: flex;
flex-wrap: wrap;
}
header
{
width: 100%;
display: flex;
justify-content: space-around;
align-items: center;
}
header h1
{
text-align: center;
font-size: 3em;
font-family: 'karnivoreregular', sans-serif;
text-shadow: 6px 6px 10px #4978C9;
margin: 0px;
}
header p
{
text-align: center;
font-size: 1.3em;
margin-bottom: 0px;
}
#portrait
{
margin: 15px;
border: 3px black solid;
border-radius: 5px;
box-shadow: 6px 6px 10px grey;
}
#portrait:hover
{
box-shadow: 6px 6px 10px #4978C9;
}
section
{
flex: 1;
min-width: 300px;
margin-right: 10px;
}
section h1
{
color: #4978C9;
font-size: 1.3em;
font-family: 'karnivoreregular', sans-serif;
}
a
{
color: #2E55BF;
}
a:visited
{
color: #2E55BF;
}
@media all and (max-width: 1024px)
{
#bloc_lisere
{
display: none;
}
#bloc_page
{
display: block;
}
header h1
{
font-size: 1.8em;
}
header p
{
font-size: 1.2em;
}
section, #bloc_page
{
min-width: 0px;
}
}