-
Notifications
You must be signed in to change notification settings - Fork 0
/
indxcss.txt
86 lines (83 loc) · 1.47 KB
/
indxcss.txt
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
body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
"Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
background-color: #11537e;
}
* {
box-sizing: border-box;
}
code {
font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New",
monospace;
}
.App {
text-align: center;
text-align: center;
width: 51%;
margin: 10% auto;
}
.App p {
padding: 17px 0px 0px;
font-family: cursive;
font-size: 22px;
font-weight: bold;
color: white;
}
.item {
background-color: white;
color: #11537e;
}
.item span {
display: inline-block;
padding: 10px;
font-weight: 600;
border: 1px #0000002e solid;
}
.item p {
color: #03a9f4;
margin: 0px;
padding: 10px;
}
.item .name,
form input[type="text"] {
width: 55%;
}
.item .age,
form input[type="number"] {
width: 25%;
}
.item .x,
form input[type="submit"] {
width: 20%;
}
.item .title {
background-color: #41a8eb;
color: white;
font-size: 22px;
font-family: -webkit-body;
}
form input[type="submit"],
input[type="number"],
input[type="text"] {
min-height: 38px;
background-color: #e9e9e9;
border: 1px #0000002e solid;
}
form input[type="submit"] {
color: white;
cursor: pointer;
background-color: #1d7bb9;
font-weight: 700;
}
.item .icon {
color: #b74d4d;
cursor: pointer;
font-weight: bold;
}
.item .icon:hover {
color: red;
}