-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
153 lines (151 loc) · 3.52 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
@import url('https://fonts.googleapis.com/css?family=Varela+Round');
body {
font-family: 'Varela Round', sans-serif;
background-image: linear-gradient(to left, rgb(190, 22, 190), rgb(6, 49, 129));
margin: 0;
padding: 0;
}
#container {
background-image: linear-gradient(to right, rgb(219, 17, 219), rgb(119, 13, 240));
/*background-color: rgb(160, 8, 165);*/
width: 40%;
padding: 50px 20px;
border-radius: 20px;
box-shadow: 0 0 1em rgba(0, 0, 0, 0.63), inset 0 0 6em rgba(0, 0, 0, 0.849);
margin: 0 auto;
margin-top: 2.5%;
color: white;
}
#container h1 {
text-align: center;
padding: 4% 0 10px 0;
width: max-content;
margin: 0 auto;
transition: .2s;
}
#container h1:hover {
color: black;
text-shadow: 0 0 1em 0 rgb(7, 88, 0);
font-size: 250%;
transition: 0.5s;
cursor: pointer;
}
#menu {
height: 50%;
text-align: center;
padding-top: 5%;
}
.botaoMenu {
width: 110px;
height: 100px;
margin: 5px;
text-align: center;
font-weight: bold;
font-size: large;
background-color: rgb(255, 255, 255);
transition: .3s;
}
.botaoMenu:hover {
background-color: rgb(49, 0, 65);
color: white;
border: 5px solid rgb(255, 255, 255);
box-shadow:
rgba(255, 0, 255, 0.4) -5px 5px,
rgba(255, 0, 221, 0.3) -10px 10px,
rgba(255, 0, 221, 0.2) -15px 15px,
rgba(255, 0, 221, 0.1) -20px 20px,
rgba(255, 0, 212, 0.05) -25px 25px;
/*box-shadow:
rgba(240, 46, 170, 0.4) -5px 5px,
rgba(240, 46, 170, 0.3) -10px 10px,
rgba(240, 46, 170, 0.2) -15px 15px,
rgba(240, 46, 170, 0.1) -20px 20px,
rgba(240, 46, 170, 0.05) -25px 25px;
box-shadow: 0 0 2em rgb(0, 0, 0);*/
cursor: pointer;
transition: .3s;
}
#primo, #parimpar, #fatorial, #quadrado, #areacirculo, #bhaskara, #hipotenusa, #vmedia {
height: 200px ;
width: 100%;
text-align: center;
display: none;
font-family: 'Varela Round';
}
#input1, #input2, #input3 {
display: none;
padding: 10px;
margin: 0 auto;
border-radius: 10px;
outline: none;
position: relative;
width: 20%;
top: -8em;
}
#resultButt {
width: 190px;
height: 40px;
border-radius: 2em;
border: 1px solid rgb(0, 0, 0);
background-image: linear-gradient(to right, rgb(255, 0, 191), rgb(25, 0, 255));
display: none;
top: 100px;
position: relative;
top: 75px;
transition: 0.5s;
color: white;
margin: 0 auto;
font-weight: bold;
}
#resultButt:hover {
background-image: linear-gradient(to right, rgb(241, 36, 190), rgb(88, 70, 255));
border: 5px solid white;
width: 210px;
cursor: pointer;
}
#result {
background-color: white;
color: black;
top: 175px;
height: 5em;
width: 100%;
border-radius: 10px;
text-align: center;
display: none;
position: relative;
top: 4.5em;
box-shadow: 0 0 1em rgba(0, 0, 0, 0.452) inset;
}
#resultText {
font-weight: bold;
position: relative;
top: 40%;
}
#credits {
background-color: white;
width: 12em;
padding: 20px;
border: 3px solid rgb(163, 0, 163);
border-radius: 2em;
opacity: 0;
transition: .7s;
}
#credits:hover {
opacity: 1;
}
#border {
border: 5px dashed rgba(255, 255, 255, 0.123);
width: max-content;
border-radius: 2.2em;
margin: 0 auto;
margin-top: 0.6em;
}
/*h3 {
position: absolute;
bottom: 0;
left: 4em;
color: rgba(255, 255, 255, 0.308);
padding: 20px;
border-radius: 20px;
border: 3px dashed rgba(255, 255, 255, 0.274)
}