-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
107 lines (101 loc) · 1.85 KB
/
index.css
File metadata and controls
107 lines (101 loc) · 1.85 KB
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
html{
height: 100%;
width: 100%;
}
/*
Namespacing inspired from: https://csswizardry.com/2015/03/more-transparent-ui-code-with-namespaces/
Key:
l- layout
t- theme
c- component
*/
.t-lol{
font-family: 'Lato';
background-color: #F9F9F9;
color: black;
}
.c-app{
-webkit-app-region: drag;
overflow-x: hidden;
overflow-y: hidden;
margin: 0px;
}
.l-grid--2-fixed-col{
margin: 0px;
height: 100%;
width: 100%;
display: grid;
grid-template-columns: 500px 800px;
}
.l-flex--space-between{
display: flex;
justify-content: space-between;
}
.l-flex--single-centered-column{
display: flex;
flex-direction: column;
align-items: center;
}
.c-sign-in{
padding: 30px 60px 30px 60px;
}
.c-sign-in__icon{
width: 50px;
}
.c-sign-in__title{
font-size: 22px;
padding-top: 18px;
padding-bottom: 18px;
}
.c-sign-in__text-input{
box-sizing: border-box;
width: 100%;
height: 40px;
margin-bottom: 15px;
padding-left: 10px;
background-color: #ededed;
border-radius: 4px;
border-style: none;
}
.c-sign-in__text-input:hover{
background-color: #ddd
}
.c-sign-in__text-input::-webkit-input-placeholder{
font-weight: 900;
padding-left: 10px;
}
.c-sign-in__text-input:focus{
outline: none;
border-style: solid;
background-color: #F9F9F9;
}
.c-sign-in__text-input:focus::-webkit-input-placeholder{
color: black;
}
.c-splash-wallpaper{
width: 100%;
}
/*
.btn{
position: relative;
margin-top: 18px;
width: 80px;
height: 40px;
border-color: #dfdfdf;
border-radius: 10px;
background-color: #F9F9F9
}
.btn__img{
position: absolute;
max-height: 100%;
max-width: 100%;
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
margin: auto;
width: 50%;
height: 40%;
}
*/