-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyle.css
More file actions
41 lines (40 loc) · 1.02 KB
/
style.css
File metadata and controls
41 lines (40 loc) · 1.02 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
@import url(https://fonts.googleapis.com/css?family=Poppins:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic);
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
user-select: none;
}
body {
display: grid;
place-items: center;
min-height: 100vh;
background-color: #0e0e0e;
}
.container {
background-image: linear-gradient(to top right, #ffa500, #ff0000);
padding: 3rem;
border-radius: 1rem;
position: relative;
box-shadow: 0 0 1rem #ff0000;
}
h2 {
font-size: 3rem;
color: #fff;
text-shadow: 0 0 .5rem rgba(0, 0, 0, .5);
}
.btns {
display: flex;
align-items: center;
justify-content: space-between;
margin-top: 2rem;
}
button {
font-size: 1.2rem;
padding: .5rem 1rem;
background-color: rgba(0, 0, 0, .5);
border: .15rem solid rgba(255, 255, 255, 1);
color: #fff;
cursor: pointer;
}