-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
56 lines (50 loc) · 989 Bytes
/
styles.css
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
.lg {
max-width: 740px;
margin: 0 auto;
padding: 15px 30px 15px 30px;
width: 100%;
}
.xlg {
max-width: 1280px;
margin: 0 auto;
padding: 15px 30px 15px 30px;
}
.btn-center {
width: 100%;
text-align: center;
}
.btn-size {
min-width: 35%;
}
.error {
color:red;
}
.success {
color:green;
}
html {
min-height: 100vh;
}
.vertical-center {
margin: 0;
position: absolute;
top: 50%;
-ms-transform: translateY(-50%);
transform: translateY(-50%);
}
body {
min-height: 100vh;
background: rgb(2,0,36);
background: linear-gradient(158deg, rgba(2,0,36,1) 0%, rgba(8,34,138,1) 15%, rgba(118,5,148,1) 33%, rgba(8,152,133,1) 47%, rgba(0,212,255,1) 56%, rgba(118,5,148,1) 75%, rgba(9,9,121,1) 100%, rgba(7,59,154,1) 100%);
display: flex;
flex-direction: column;
justify-content: center;
}
h1 {
color:rgb(213, 241, 0);
font-size: 3rem;
}
h2 {
text-align: center;
margin-bottom: 1.5rem;
}