-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtext-styling.css
More file actions
39 lines (36 loc) · 1.03 KB
/
Copy pathtext-styling.css
File metadata and controls
39 lines (36 loc) · 1.03 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
/* @import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap'); */
/* global selector */
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
p{
color: red;
background-color: green;
font-size: 32px;
text-align: center;
/* fontiwieght-normal (400)/bold */
font-weight: 900;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
/* wothin quotation- multiple fonts */
/* there are many fonts using comma in a line because if the first one can't be loaded. the next will be applied */
}
body {
background-image: url('/obstactle.png');
background-size: cover;
background-position: center;
height: 400;
width: 300;
font-family: "Roboto", sans-serif;
}
.my-class{
/* margin: 40px; */
border: solid red;
}
button{
border: 2px solid green;
padding: 10px, 20px;
border-radius: 10px;
background-color: yellow;
}