-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
105 lines (100 loc) · 1.84 KB
/
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
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
html, body {
width: 100%;
height: 100%;
padding: 0%;
margin: 0%;
font-family: Arial, Helvetica, sans-serif;
}
body {
background-color: #444;
}
.centerer {
width: 100%;
height: 100%;
display: flex;
align-self: center;
align-items: center;
justify-content: center;
vertical-align: center;
margin: auto;
}
.main_container {
height: 75%;
padding-top: 15%;
}
.centered_contained {
display: flex;
flex-direction: column;
height: 100%;
}
.mini_sep {
/* display: contents; */
display: flex;
flex-direction: column;
width: fit-content;
height: fit-content;
margin-top: 20px;
}
.half_container {
background-color: rgba(38, 139, 221, 0.3);
width: 45%;
height: 100%;
margin-right: 10px;
margin-left: 10px;
display: flex;
flex-direction: column;
border-radius: 10px;
}
.side_container_header,
.containerFillVertical {
display: flex;
width: 100%;
height: 100px;
align-items: center;
justify-content: center;
border-radius: 10px;
text-align: center;
}
.side_container_header {
background-color: rgb(38, 139, 221);
}
.containerFillVertical {
flex-direction: column;
}
.HIDDEN {
display: none;
visibility: none;
}
.header_image {
display: block;
position: absolute;
text-align: center;
display: block;
margin-left: auto;
margin-right: auto;
margin-top: 3%;
left: 25%;
width: 50%;
}
.text_input,
.big_button {
width: 600px;
height: 100px;
margin: 5px;
border-radius: 25px;
border: none;
text-align: center;
font-size: 50px;
}
.big_button {
color: #FFF;
background-color: rgb(188, 4, 234);
}
.big_button:hover {
transform: scale(1.02);
filter: brightness(85%);
}
.big_button:active {
transform: scale(1.03);
filter: brightness(75%);
}