forked from codemistic/Web-Development
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
175 lines (152 loc) · 3.52 KB
/
style.css
File metadata and controls
175 lines (152 loc) · 3.52 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
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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
* {
margin: 0;
padding: 0;
box-sizing: border-box;
scroll-behavior: smooth;
}
body {
/* background-color: rgb(255, 255, 209); */
background: #9796f0; /* fallback for old browsers */
background: -webkit-linear-gradient(
to right,
#fbc7d4,
#9796f0
); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(
to right,
#fbc7d4,
#9796f0
); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
nav.navbar {
border-bottom: 5px solid rgb(230, 137, 137);
}
nav.navbar a.navbar-brand {
font-family: "Comfortaa", cursive;
font-size: 25px;
}
nav.navbar a.nav-link {
font-family: "Didact Gothic", sans-serif;
}
div.head {
text-align: center;
margin-top: 40px;
}
hr.style-two {
border: 0;
height: 1.2px;
background-image: linear-gradient(
to right,
rgba(0, 0, 0, 0),
rgba(0, 0, 0, 0.75),
rgba(0, 0, 0, 0)
);
}
div.head h5.copy {
font-family: "Bodoni Moda", serif;
font-weight: 700;
font-size: 25px;
}
div.head h1.three {
margin-top: 80px;
font-family: "Comfortaa", cursive;
}
div.head div.two {
margin-top: 50px;
width: 100%;
border: 1.5px solid black;
border-radius: 30px;
/* background-color: rgb(221, 255, 244); */
background: #74ebd5; /* fallback for old browsers */
background: -webkit-linear-gradient(
to top,
#acb6e5,
#74ebd5
); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(
to top,
#acb6e5,
#74ebd5
); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
div.head h1.less {
margin-bottom: 30px;
font-family: "Goldman", cursive;
}
div.head div.card button.btn {
margin-bottom: 0px;
margin-top: 10px;
}
div.head div.card div.card-body div.one input#title,
div.head div.card div.card-body div.one textarea#addTxt {
width: 90%;
outline: none;
border: 1.5px solid black;
border-radius: 5px;
padding: 10px 15px;
}
div.head div.card div.card-body div.one input#title:focus,
div.head div.card div.card-body div.one textarea#addTxt:focus {
outline: none;
}
div.head div.card div.form-group {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
div.head div.form-check {
display: flex;
align-items: center;
justify-content: center;
}
div.head div.form-check input{
margin-right: 180px;
}
div.head div.form-check label {
font-family: "Didact Gothic", sans-serif;
font-size: 20px;
text-align: center;
margin: 0 auto;
}
h1#next {
margin-top: 20px;
font-family: "Comfortaa", cursive;
}
div#notes {
margin: 20px auto;
display: flex;
align-items: center;
justify-content: center;
background-color: bisque;
padding: 50px 0px;
border: 5px solid rgb(245, 129, 129);
}
div#notes div.card {
margin: 15px 15px;
border: 1.5px solid black;
border-radius: 15px;
background: #c9d6ff; /* fallback for old browsers */
background: -webkit-linear-gradient(
to top,
#e2e2e2,
#c9d6ff
); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(
to top,
#e2e2e2,
#c9d6ff
); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
div#notes div.card h5 {
font-family: "Noticia Text", serif;
font-size: 28px;
}
div#notes div.card p.card-text {
font-family: "Rokkitt", serif;
font-size: 20px;
}
div#notes div.card h6.card-text {
font-family: "Rokkitt", serif;
font-size: 20px;
}