-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcss
40 lines (31 loc) · 1.03 KB
/
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
/******************************************************************************
START Glitch hello-app default styles
The styles in this section do some minimal CSS resets, set default fonts and
colors, and handle the layout for our footer and "Remix on Glitch" button. If
you're new to CSS they may seem a little complicated, but you can scroll down
to this section's matching END comment to see page-specific styles.
******************************************************************************/
/*
The style rules specify elements by type and by attributes such as class and ID
Each section indicates an element or elements, then lists the style properties to apply
See if you can cross-reference the rules in this file with the elements in index.html
*/
body {
background-color: grey;
height: 100%;
}
.info {
background-color: teal;
border: 10px solid yellow;
border-style: double;
float: middle;
}
img {
display: block;
margin-left: auto;
margin-right: auto;
padding: 1px;
}
h1 {
text-align: center;
}