-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
118 lines (100 loc) · 2 KB
/
style.css
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
* {
margin: 0;
padding: 0;
}
@font-face {
font-family: norse;
src: url(./src/Norse-Bold.otf);
}
body {
background-color: lightgray;
}
main {
display: flex;
height: 100vh;
overflow: hidden;
}
#sidebar-section {
flex: 1 1 auto;
width: 10vw;
min-width: 500px;
}
#sidebar #background-image {
width: 100%;
/* height: 100vh; */
}
#sidebar a {
text-decoration: none;
color: white;
}
#sidebar #img-attribute {
text-align: center;
color: white;
background-color: rgba(0, 0, 0, 0.3);
position: relative;
bottom: 60px;
}
#sidebar #sidebar-logo {
position: relative;
bottom: 80vh;
display: flex;
justify-content: center;
align-items: center;
color: white;
background-color: rgba(0, 0, 0, 0.4);
font-family: norse, "Arial Narrow", Arial, sans-serif;
font-size: 100px;
}
#sidebar #sidebar-logo img {
width: 100px;
}
#hero-section {
display: flex;
flex-direction: column;
justify-content: space-between;
height: 100vh;
font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}
#hero-section #hero-text {
padding: 60px;
font-size: 30px;
}
#hero-section #hero-text p {
padding: 10px;
font-weight: bold;
}
#hero-section #hero-form {
display: flex;
flex-wrap: wrap;
padding: 100px;
background-color: whitesmoke;
}
#hero-section #hero-form .hero-input {
flex-basis: 50%;
box-sizing: border-box;
padding: 10px;
}
#hero-section #hero-form .hero-input input {
border: 1px solid #e5e7eb;
border-radius: 10px;
padding: 10px;
box-shadow: 2.5px 2.5px #e5e7eb;
}
#hero-section #hero-form .hero-input input:valid {
border: 1px solid lightgreen;
box-shadow: 2.5px 2.5px lightgreen;
}
#hero-section #hero-form .hero-input input:invalid {
border: 1px solid rgb(238, 73, 73);
box-shadow: 2.5px 2.5px rgb(238, 73, 73);
}
#hero-section #hero-buttons {
padding: 100px;
}
#hero-section #hero-buttons button {
padding: 15px;
font-size: 20px;
background-color: #596d48;
border-radius: 10px;
box-shadow: 2px 2px #596d48;
}