-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
66 lines (60 loc) · 1.09 KB
/
Copy pathstyle.css
File metadata and controls
66 lines (60 loc) · 1.09 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: whitesmoke;
font-size: 1rem;
color: darkred;
}
h1 {
text-align: center;
display: block;
background: linear-gradient(to right, purple, firebrick);
border-radius: 2rem;
padding: 0.15rem;
font-size: 2.5rem;
font-weight: bolder;
-webkit-text-stroke: 2px 2px 5px black;
text-shadow: 2px 2px 5px whitesmoke;
width: 90%;
margin: 4rem auto 2rem auto;
padding-right: 0.15rem;
color: whitesmoke;
font-family: serif;
}
p {
font-family: cursive;
display: block;
font-size: 3rem;
line-height: 2em;
width: 70%;
font-weight: 900;
margin: 0.5rem auto;
}
.upper {
font-size: 3rem;
}
button {
display: block;
background-color: darkred;
font: inherit;
color: whitesmoke;
padding: 1rem;
width: 80%;
height: 60px;
margin: auto auto 1.5rem auto;
border-radius: 2rem;
border: none;
font-family: serif;
}
button:focus, button:active, button:hover
{
width: 90%;
height: 70px;
font-size: 1.5em;
padding: 1rem;
background-color: #FF4545;
transition: all ease 0.1s;
}