-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.css
99 lines (91 loc) · 1.82 KB
/
App.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
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
.main {
width: 400px;
margin: 40px auto;
border: 5px solid rgba(231, 156, 18, 0.89);
border-radius: 10px;
box-shadow:0px 5px 15px rgba(0, 0, 0, 0.35) ;
padding: 10px;
}
.head {
text-shadow: 2px 7px 5px rgba(0,0,0,0.3),
0px -4px 10px rgba(255,255,255,0.3);
text-align: center;
}
.inline-head{
text-align: center;
}
.Inline{
display: inline-block;
border: 5px solid #fda9009d;
margin: 0px;
padding: 20px;
}
.Inline>span {
font-weight: bold;
}
.box {
border: 5px solid rgba(231, 156, 18, 0.89);
border-radius: 10px;
padding: 10px;
width: 350px !important;
margin-bottom: 20px;
text-align: center;
}
h4{
text-align: center;
padding-bottom: 15px;
}
/* CSS */
.button-1 {
background: rgba(231, 156, 18, 0.89);
border: 1px solid rgba(231, 156, 18, 0.89);
border-radius: 6px;
box-shadow: rgba(0, 0, 0, 0.1) 1px 2px 4px;
box-sizing: border-box;
color: #FFFFFF;
cursor: pointer;
display: inline-block;
font-family: nunito,roboto,proxima-nova,"proxima nova",sans-serif;
font-size: 16px;
font-weight: 800;
line-height: 16px;
min-height: 40px;
outline: 0;
padding: 8px 14px;
text-align: center;
text-rendering: geometricprecision;
text-transform: none;
user-select: none;
-webkit-user-select: none;
touch-action: manipulation;
vertical-align: middle;
}
.button-1:hover,
.button-1:active {
background-color: initial;
background-position: 0 0;
color: rgba(231, 156, 18, 0.89);
}
.button-1:active {
opacity: .5;
}
.field{
margin-bottom: 5px;
width: 80%;
}
.list{
list-style-type: none;
margin: 2px 7px;
background-color: #e9c46a;
border: 2px solid black;
border-radius: 7px;
text-align: start;
padding: 4px 6px;
font-weight: bold;
display: flex;
justify-content: space-around;
vertical-align: middle;
}
.list>button{
padding: 2px !important;
}