make stuffs bigger!
This commit is contained in:
parent
e2afd229a6
commit
b96074afe0
15
interface.ui
15
interface.ui
|
@ -17,13 +17,14 @@
|
||||||
<property name="orientation">vertical</property>
|
<property name="orientation">vertical</property>
|
||||||
<property name="halign">center</property>
|
<property name="halign">center</property>
|
||||||
<property name="valign">center</property>
|
<property name="valign">center</property>
|
||||||
<property name="hexpand">True</property>
|
|
||||||
<property name="vexpand">True</property>
|
|
||||||
<property name="spacing">12</property>
|
<property name="spacing">12</property>
|
||||||
<child>
|
<child>
|
||||||
<object class="GtkLabel" id="prompt_label">
|
<object class="GtkLabel" id="prompt_label">
|
||||||
<property name="visible">True</property>
|
<property name="visible">True</property>
|
||||||
<property name="label">prompt label</property>
|
<property name="label">prompt label</property>
|
||||||
|
<style>
|
||||||
|
<class name="prompt" />
|
||||||
|
</style>
|
||||||
</object>
|
</object>
|
||||||
</child>
|
</child>
|
||||||
<child>
|
<child>
|
||||||
|
@ -40,6 +41,9 @@
|
||||||
<property name="caps_lock_warning">False</property>
|
<property name="caps_lock_warning">False</property>
|
||||||
<property name="hexpand">True</property>
|
<property name="hexpand">True</property>
|
||||||
<property name="vexpand">True</property>
|
<property name="vexpand">True</property>
|
||||||
|
<style>
|
||||||
|
<class name="pin" />
|
||||||
|
</style>
|
||||||
</object>
|
</object>
|
||||||
</child>
|
</child>
|
||||||
<child>
|
<child>
|
||||||
|
@ -65,6 +69,9 @@
|
||||||
<property name="visible">True</property>
|
<property name="visible">True</property>
|
||||||
<property name="label">Login</property>
|
<property name="label">Login</property>
|
||||||
<signal name="clicked" handler="login_cb"/>
|
<signal name="clicked" handler="login_cb"/>
|
||||||
|
<style>
|
||||||
|
<class name="login_btn"/>
|
||||||
|
</style>
|
||||||
</object>
|
</object>
|
||||||
</child>
|
</child>
|
||||||
<child>
|
<child>
|
||||||
|
@ -90,7 +97,7 @@
|
||||||
<object class="GtkImage">
|
<object class="GtkImage">
|
||||||
<property name="visible">True</property>
|
<property name="visible">True</property>
|
||||||
<property name="icon_name">edit-clear-symbolic</property>
|
<property name="icon_name">edit-clear-symbolic</property>
|
||||||
<property name="icon_size">40</property>
|
<property name="icon_size">80</property>
|
||||||
</object>
|
</object>
|
||||||
</child>
|
</child>
|
||||||
</object>
|
</object>
|
||||||
|
@ -103,7 +110,7 @@
|
||||||
<object class="GtkImage">
|
<object class="GtkImage">
|
||||||
<property name="visible">True</property>
|
<property name="visible">True</property>
|
||||||
<property name="icon_name">applications-system-symbolic</property>
|
<property name="icon_name">applications-system-symbolic</property>
|
||||||
<property name="icon_size">40</property>
|
<property name="icon_size">80</property>
|
||||||
</object>
|
</object>
|
||||||
</child>
|
</child>
|
||||||
</object>
|
</object>
|
||||||
|
|
28
style.css
28
style.css
|
@ -5,17 +5,13 @@ window * {
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
window {
|
button {
|
||||||
background-color: black;
|
border: none;
|
||||||
|
border-radius: 20em;
|
||||||
}
|
}
|
||||||
|
|
||||||
button {
|
window {
|
||||||
border: 0;
|
background-color: black;
|
||||||
background: none;
|
|
||||||
outline-style: dashed;
|
|
||||||
margin: 0;
|
|
||||||
border-width: 2px;
|
|
||||||
padding: 16px 36px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
label {
|
label {
|
||||||
|
@ -31,9 +27,19 @@ button:active label {
|
||||||
color: black;
|
color: black;
|
||||||
}
|
}
|
||||||
|
|
||||||
hdykeypad > button {
|
hdykeypad > button label{
|
||||||
font-size: 20px;
|
font-size: 5em;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.login_btn > label {
|
||||||
|
font-size: 2em;
|
||||||
|
background-clip: padding-box;
|
||||||
|
padding: 0.5em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pin, .prompt {
|
||||||
|
font-size: 2em;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue