-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
executable file
·52 lines (45 loc) · 771 Bytes
/
style.css
File metadata and controls
executable file
·52 lines (45 loc) · 771 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
* {
margin: 0;
padding: 0;
}
body {
background-image: url("img/ImageBackground.jpg");
background-repeat: repeat;
background-attachment: fixed;
width: 1000px;
min-height: 600px;
margin: 0 auto;
}
h1 {
color: #ffffff;
font-family: fantasy;
font-size: 30px;
text-align: center;
}
#container {
width: inherit;
}
#grid {
float: left;
width: 500px;
}
#informations-wrapper {
color: #ffffff;
float: left;
width: 500px;
}
#informations {
margin: 10px;
border-style: solid;
border-width: 2px;
border-color: white;
padding: 5px;
text-align: center;
}
.green-border {
border-style: solid;
border-width: 2px;
border-color: green;
width: 116px;
height: 116px;
}