-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
108 lines (91 loc) · 1.56 KB
/
style.css
File metadata and controls
108 lines (91 loc) · 1.56 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
body{
background: rgb(13,137,17);
background: linear-gradient(135deg, rgba(13,137,17,0.6281863087031687) 0%, rgba(112,70,252,1) 100%);
font-family: Helvetica, sans-serif;
color: white;
}
p {
text-align: center;
font-size: 20px;
margin-right: 200px;
margin-left: 200px;
}
h1 {
text-align: center;
text-transform: uppercase;
font-size: 40px;
}
h2{
color:#c7e091;
outline: #49A1DA;
outline-width: 10px;
text-align: center;
}
h3{
color:#020d70;
margin-top: 10px;
text-align: center;
}
ul {
margin-left: 50px;
}
li {
color: black;
}
/* Email form*/
form {
text-align: center;
font-size: 20px;
}
/* Center images */
.center {
display: block;
margin-left: auto;
margin-right: auto;
}
/* Navbar */
.topnav {
background-color: #333;
overflow: hidden;
}
.topnav a {
float: left;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
}
.topnav a:hover {
background-color: #ddd;
color: black;
}
.topnav a.active {
background-color: rgba(112,70,252,1);
color: white;
}
/* Picture list */
.row {
display: flex;
}
.column {
flex: 50%;
padding: 150px;
}
/* Button */
button {
background-color: rgb(13,137,17);
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
}
.button_center {
display: flex;
justify-content: center;
align-items: center;
height: 200px;
}