-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
85 lines (79 loc) · 1.76 KB
/
Copy pathstyle.css
File metadata and controls
85 lines (79 loc) · 1.76 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
@import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro:ital,wght@0,600;1,400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@700&display=swap");
body {
background: #202036;
font-family: 'Source Sans Pro', sans-serif;
margin: 0px;
padding: 0px;
}
.title {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
max-width: 90%;
padding-top: 5vh;
margin: auto;
}
.title h1 {
font-family: 'Roboto', sans-serif;
font-size: 50px;
color: white;
margin: 30px;
}
.box {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
margin: 5% 20%;
background: rgba(0, 0, 0, 0.3);
border-radius: 20px;
padding: 5vh;
}
.blank {
color: black;
outline: none;
border-radius: 10px;
border: none;
font-size: 1.4rem;
text-align: center;
height: 45px;
width: 400px;
}
.button {
padding: 0 20px;
color: white;
background: #5cb8c7;
font-size: 1.5rem;
border-radius: 10px;
outline: none;
border: none;
text-align: center;
height: 45px;
width: 260px;
margin: 20px 20px;
}
#output {
color: white;
font-size: 1.4rem;
}
/*# sourceMappingURL=style.css.map */