-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.css
More file actions
114 lines (97 loc) · 2.06 KB
/
test.css
File metadata and controls
114 lines (97 loc) · 2.06 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
108
109
110
111
112
113
114
/*
* This is a manifest file that'll be compiled into application.css, which will include all the files
* listed below.
*
* Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
* vendor/assets/stylesheets directory can be referenced here using a relative path.
*
* You're free to add application-wide styles to this file and they'll appear at the bottom of the
* compiled file so the styles you add here take precedence over styles defined in any other CSS
* files in this directory. Styles in this file should be added after the last require_* statement.
* It is generally better to create a new file per style scope.
*
*= require_tree .
*= require_self
*/
/*
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
@font-face {
font-family: 'Proxima-Nova';
src: url('../fonts/Proxima\ Nova\ Font.otf');
}
body {
background-color: rgb(235, 238, 238);
}
.d-flex {
display: flex;
}
.d-flex-column {
flex-direction: column;
}
.justify-center {
justify-content: center;
}
.space-between {
justify-content: space-between;
}
.nav-bar-container {
font-family: 'Italiana', serif;
font-size: 1.2rem;
font-weight: bold;
justify-content: space-between;
padding: 1.5rem;
background-color: #3778c2;
color: #fff;
}
.sign-out-btn {
border: none;
background-color: transparent;
color: #fff;
font-size: 1.1rem;
}
.form-field {
width: 100%;
padding: 1rem;
font-size: 1rem;
font-family: 'Roboto', sans-serif;
outline: none;
}
.back-link {
color: white;
}
.devise-btn {
margin: 0 2rem;
width: 20rem;
text-align: center;
padding: 1rem;
font-family: 'Italiana', serif;
font-size: 1.5rem;
font-weight: bold;
cursor: pointer;
border: none;
}
.devise-btn:hover {
color: #fff;
background-color: #3778c2;
}
.log-in-btn {
margin-top: 1.5rem;
}
.forgot-password-div {
margin-top: 0.5rem;
}
.forgot-password {
color: #3778c2;
font-size: 1.2rem;
}
.password-character {
color: #3778c2;
font-size: 1.2rem;
font-style: italic;
margin-top: 0.4rem;
margin-left: 0.4rem;
} */