-
Notifications
You must be signed in to change notification settings - Fork 0
/
page-demo-style.css
57 lines (49 loc) · 991 Bytes
/
page-demo-style.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
57
:root{
--main-gradient: linear-gradient(90deg, #b6fff9, #a2bdff);
--green-nav-main: #00e4d0;
}
body{
font-family: 'Noto Serif NP Hmong', serif;
background: var(--main-gradient);
}
.container{
text-align: center;
padding: 1rem;
background: white;
box-shadow: 0px 0px 15px #015b5382 !important;
border-radius: 15px;
margin: 0.5rem;
}
hr{
width: 20%;
margin-left: auto;
margin-right: auto;
}
ol{
display: inline-block;
}
ol li{
text-align:left;
}
input{
width: 100%;
height: 2rem;
border-radius: 10px;
text-align: center;
background: var(--main-gradient);
border: 2px solid white;
font-size: 1rem;
}
textarea{
width: 100%;
border-radius: 10px;
text-align: left;
background: var(--main-gradient);
border: 2px solid white;
font-size: 1rem;
}
#footer{
text-align:center;
margin-top:2rem;
margin-bottom:2rem;
}