-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
109 lines (93 loc) · 1.74 KB
/
index.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
100
101
102
103
104
105
106
107
body{
background-color: rgb(29, 28, 28);
}
h1{
text-align: center;
color:rgb(255, 255, 255);
font-family: 'ZCOOL KuaiLe', cursive;
}
label{
color:rgb(255, 255, 255);
text-align:justify;
font-weight: bold;
letter-spacing: 1px;
font-size: 16px;
}
select {
width: 100%;
padding: 16px 20px;
border: none;
border-radius: 4px;
background-color: #21801e;
color:white;
font-size: 15px;
font-weight: bold;
}
.incremento{
width: 100vw;
height: 15vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
color:white
}
.bttns{
width: 100vw;
height: 30vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
input[type=text]:focus {
background-color: rgb(108, 185, 73);
border: 3px solid #555;
}
input[type=text] {
background-color: #21801e;
color: white;
width: 100%;
padding: 42px 70px;
margin: 8px 0;
box-sizing: border-box;
border: 1px solid #ccc;
border-radius: 5px;
font-size: 20px;
}
input[type=radio]{
padding: 46px 80px;
}
button {
border-radius: 12px;
background-color: white;
color: black;
border: 2px solid #4CAF50;
transition-duration: 2.0s;
}
button:hover {
background-color: #4CAF50;
color: white;
box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
}
textarea{
width:100%;
background-color:#21801e;
box-sizing: border-box;
box-shadow: 1px 1px 1px #999;
border-radius: 5px;
border: 1px solid #ccc;
padding: 42px 70px;
font-size: 20px;
color:white
}
textarea[type=text]:focus {
background-color: rgb(108, 185, 73);
border: 3px solid #555;
}
hr{
height: 12px;
border: 0;
box-shadow: inset 0 12px 12px -12px rgb(255, 255, 255);
}