-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
55 lines (48 loc) · 919 Bytes
/
Copy pathstyle.css
File metadata and controls
55 lines (48 loc) · 919 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
53
54
55
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* GENERAL */
.header, .main{
text-align: center;
font-size: 2rem;
margin: 20px;
padding: 5px;
text-shadow: 2px 1px 2px red;
}
.increase-btn, #save-btn{
width: 35vw;
height: 5vh;
font-size: 30px;
padding-top: 5px;
padding-bottom: 40px;
margin-top: 30px;
border-radius: 8px;
border-color: rgba(255, 0, 0, 0.267);
color: red;
background-color: orange;
cursor: pointer;
}
#welcome-el{
display: none;
}
.welcome{
display: flex;
justify-content: center;
}
.wel-btn{
background-color: grey;
font:100;
padding-inline: 23px;
padding: 10px;
border-radius: 8px;
}
.wel-btn:hover{
background-color: red;
color: aliceblue;
transition: 0.5s;
}
body{
background-image: linear-gradient(to right, rgba(42, 192, 42, 0.342), rgba(52, 52, 223, 0.815) );
}