-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
88 lines (79 loc) · 1.6 KB
/
style.css
File metadata and controls
88 lines (79 loc) · 1.6 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
* {
margin: 0;
padding: 0;
border: none;
box-sizing: border-box;
outline: 0;
text-transform: capitalize;
}
body {
background: black;
color: ghostwhite;
position: relative;
font-size: 62.25%;
}
.header1 {
font-weight: bolder;
font-size: 55px;
margin-top: 6rem;
text-shadow: 1px 4px 3px rgb(249, 244, 244);
color: rgb(181, 177, 177);
}
#header {
font-weight: bolder;
font-size: 50px;
margin-top: 2rem;
}
#save {
background-color: deeppink;
color: black;
height: 3rem;
width: 7rem;
margin: 2rem;
font-style: normal;
font-weight: bolder;
font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
"Lucida Sans", Arial, sans-serif;
font-size: 20px;
box-shadow: 2px 2px 2px rgb(133, 129, 129);
cursor: pointer;
}
button {
background-color: ghostwhite;
color: black;
height: 2rem;
width: 5rem;
border-radius: 8px;
cursor: pointer;
}
#increment-btn {
background-color: ghostwhite;
color: black;
height: 3rem;
width: 7rem;
margin: 2rem;
font-style: normal;
font-weight: bolder;
font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
"Lucida Sans", Arial, sans-serif;
font-size: 20px;
box-shadow: 2px 2px 2px rgb(133, 129, 129);
cursor: pointer;
}
#increment-btn:hover {
background-color: deeppink;
color: black;
}
#save:hover {
background-color: ghostwhite;
color: black;
}
p {
font-weight: bolder;
font-size: 25px;
margin-top: 3rem;
}
.darkMode {
background-color: rgb(251, 249, 249);
color: rgb(13, 13, 13);
}