-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcustom.css
More file actions
65 lines (60 loc) · 1.19 KB
/
custom.css
File metadata and controls
65 lines (60 loc) · 1.19 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
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&family=Rubik:wght@300&display=swap');
* {
padding: 0px;
margin: 0px;
box-sizing: border-box;
font-family: 'Roboto', sans-serif;
}
body {
background: #3498db;
}
#main {
width: 100%;
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.heading1 {
text-align: center;
padding-bottom: 30px;
color: #fff;
}
#box {
width: 550px;
/* height: 300px; */
background: #fff;
border-radius: 6px;
border: transparent;
padding: 20px;
box-shadow: 0 4px 10px rgb(0 0 0 / 50%);
}
#box h2 {
padding-bottom: 15px;
font-size: 24px;
}
#box .options {
display: inline-block;
margin: 10px 10px 15px 0px;
/* margin-top: 0; */
}
label {
user-select: none;
}
.buttons {
display: flex;
justify-content: center;
}
.btn {
width: 100%;
font-size: 18px;
font-weight: 600;
background: #3498db;
color: #fff;
cursor: pointer;
margin: 20px 0 0;
padding: 12px 0px;
border: transparent;
border-radius: 4px;
}